IVZBubbleChart.ShowBubbleHistory

Syntax

ShowBubbleHistory: Boolean;

Description

The ShowBubbleHistory property determines whether chart bubble movement history is displayed.

Comments

Available values:

Example

Executing the example requires that the repository contains an express report with the EXPRESS identifier containing a bubble chart.

Add links to the Express, Metabase, Visualizators system assemblies.

Sub UserProc;
Var
    MB: IMetabase;
    Express: IEaxAnalyzer;
    BC: IVZBubbleChart;
Begin
    // Get repository
    MB := MetabaseClass.Active;
    // Get express report
    Express := MB.ItemById("EXPRESS").Edit As IEaxAnalyzer;
    // Get bubble chart
    BC := Express.BubbleChart.BubbleChart;
    // Enable displaying of bubble moving history
    BC.ShowBubbleHistory := True;
    // Enable displaying of annual tooltips
    BC.ShowBubbleHistoryLabels := True;
    // Disable ability to change chart scale
    BC.UseZoomOnWheel := False;
    // Display history on mouse click on bubble
    BC.ShowHistoryMode := VisualizatorHistoryModeEnum.Click;
    // Disable history on moving to the other year
    If BC.ShowHistoryPreviousStepsOnly Then
        BC.ShowHistoryPreviousStepsOnly := False;
    End If;
    // Refresh bubble chart and refresh report
    Express.BubbleChart.Refresh;
    (Express As IMetabaseObject).Save;
End Sub UserProc;

After executing the example in express report on the mouse click on any bubble chart bubble:

For example:

See also:

IVZBubbleChart