IVZTreeMap.UseItemColorForToolTipBorder

Syntax

UseItemColorForToolTipBorder: Boolean;

Description

The UseItemColorForToolTipBorder property determines whether the element color is used to select the tooltip border when pointing the mouse cursor on it.

Comments

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:

Example

Executing the example requires an express report with the EXP identifier that contains a tree map.

The unit should have 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;
    TreeMap: IVZTreeMap;
Begin
    // Get the current repository
    Metabase := MetabaseClass.Active;
    // Get express report
    EaxAnalyzer := Metabase.ItemById("EXP").Edit As IEaxAnalyzer;
    // Get tree map
    TreeMap := EaxAnalyzer.TreeMap.TreeMap;
    // Disable displaying of tooltip borders with element color
    TreeMap.UseItemColorForToolTipBorder := False;
    (EaxAnalyzer As IMetaBaseObject).Save;
End Sub UserProc;

After executing the example tooltip borders are displayed with one color that does not depend on the element color.

See also:

IVZBubbleTree