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 default value of this property is True.

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 module must have links to the Metabase, Vizualizators, Express system assemblies.

In the example dependence of tooltip borders on element color is disabled:

Sub UserProc;
Var
    Metabase: IMetabase; // Metabase
    EaxAnalyzer: IEaxAnalyzer; // Express report
    TreeMap: IVZTreeMap; // Tree map
Begin
    // Get metabase object
    Metabase := MetabaseClass.Active;
    // Open express report
    EaxAnalyzer := Metabase.ItemById("EXP").Edit As IEaxAnalyzer;
    // Get tree map
    TreeMap := EaxAnalyzer.TreeMap.TreeMap;
    // Disable filling of tooltip borders with element color
    TreeMap.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:

IVZBubbleTree