IBubbleChart.UseBubbleFillForTooltip

Fore Syntax

UseBubbleFillForTooltip: Boolean;

Fore.NET Syntax

UseBubbleFillForTooltip: boolean;

Description

The UseFillForTooltip property determines whether the color of a tooltip border corresponds to the color of the bubble.

Comments

Available values:

Fore Example

Executing the example requires an express report with the EXPR_CHART identifier, containing a chart.

Add links to the Metabase, Chart and Express system assemblies.

Sub UserProc;
Var
    mb: IMetabase;
    bubble: IBubbleChart;
    eax: IEaxAnalyzer;
Begin
    mb := MetabaseClass.Active;
    eax := mb.ItemById("EXPR_CHART").Edit As IEaxAnalyzer;
    bubble := eax.BubbleChart.Chart;
    bubble.UseBubbleFillForTooltip := True;
    (eax As IMetabaseObject).Save;
End Sub UserProc;

After executing the example the color of the tooltip border corresponds to that of the bubble.

Fore.NET Example

The requirements and result of the Fore.NET example execution match with those in the Fore example.

Imports Prognoz.Platform.Interop.Chart;
Imports Prognoz.Platform.Interop.Express;

Public Shared Sub Main(Params: StartParams);
Var
    mb: IMetabase;
    bubble: IBubbleChart;
    eax: IEaxAnalyzer;
Begin
    mb := Params.Metabase;
    eax := mb.ItemById["EXPR_CHART"].Edit() As IEaxAnalyzer;
    bubble := eax.BubbleChart.Chart;
    bubble.UseBubbleFillForTooltip := True;
    (eax As IMetabaseObject).Save();
End Sub;

See also:

IBubbleChart