Show contents 

Express > Express Assembly Interfaces > IEaxObject > IEaxObject.SyncIndicators

IEaxObject.SyncIndicators

Syntax

SyncIndicators: Boolean;

Description

The SyncIndicators property determines whether metric synchronization is enabled for visualizers.

Comments

Available values:

List of visualizers and synchronization rules (•, ■):

Priority / visualizer

Table

Chart

Map

Bubble chart

Bubble Tree

Tree Map

Value

       
Color  

 

Size

 

To synchronize metrics of required visualizers, the SyncIndicators property should be set to True for each visualizer.

Example

Executing the example requires that the repository contains an express report with the EXPRESS identifier containing several types of visualizers.

Add links to the Express, Metabase system assemblies.

Sub UserProc;
Var
    MB: IMetabase;
    Express: IEaxAnalyzer;
    BC: IEaxObject;
Begin
    // Get repository
    MB := MetabaseClass.Active;
    // Get express report
    Express := MB.ItemById("EXPRESS").Edit As IEaxAnalyzer;
    // Get bubble chart
    BC := Express.BubbleChart As IEaxObject;
    // Synchronize visualizer metrics
    BC.SyncIndicators := True;
    (Express As IMetabaseObject).Save;
End Sub UserProc;

After executing the example bubble chart metric will be included in the synchronization of metrics.

See also:

IEaxObject