UseItemColorForToolTipBorder: Boolean;
The UseItemColorForToolTipBorder property determines whether the element color is used to select the tooltip border when pointing the mouse cursor on it.
The property is set to True by default.
If the value is True, tooltip border format is equal to element color:

If the value is False, tooltip border is filled with one color that does not depend on the element color:

Executing the example requires an express report with the EXP identifier that contains a bubble tree.
Add links to the Express, Metabase, Visualizators system assemblies.
The example disables dependency of tooltip borders from element color:
Sub UserProc;
Var
Metabase: IMetabase;
EaxAnalyzer: IEaxAnalyzer;
BubbleTree: IVZBubbleTree;
Begin
// Get the current repository
Metabase := MetabaseClass.Active;
// Get express report
EaxAnalyzer := Metabase.ItemById("EXP").Edit As IEaxAnalyzer;
// Get bubble tree
BubbleTree := EaxAnalyzer.BubbleTree.BubbleTree;
// Disable filling of tooltip borders with element color
BubbleTree.UseItemColorForToolTipBorder := False;
(EaxAnalyzer As IMetaBaseObject).Save;
End Sub UserProc;
After executing the example tooltip borders are filled with one color that does not depend on the element color.
See also: