UseBubbleFillForTooltip: Boolean;
UseBubbleFillForTooltip: boolean;
The UseFillForTooltip property determines whether the color of a tooltip border corresponds to the color of the bubble.
Available values:
True. The color of a tooltip border corresponds to the color of the bubble.
False. The color of a tooltip border is specified by the user.
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.
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: