IBubbleChart.RadialAxis

Fore Syntax

RadialAxis: IBubbleChartAxis;

Fore.NET Syntax

RadialAxis: Prognoz.Platform.Interop.Chart.IBubbleChartAxis;

Description

The RadialAxis property returns parameters of bubble size scale for a bubble chart.

Fore Example

Executing the example requires an express report with the EXPRESS_REPORT identifier. The express report is set up to ensure bubble chart displaying and operation.

Sub UserProc;
Var
    MB: IMetabase;
    Eax: IEaxAnalyzer;
    Bubble: IBubbleChart;
    RadialAxis: IBubbleChartAxis;
Begin
    MB := MetabaseClass.Active;
    Eax := MB.ItemById("EXPRESS_REPORT").Edit As IEaxAnalyzer;
    Bubble := Eax.BubbleChart.Chart;
    //Bubble size scale
    RadialAxis := Bubble.RadialAxis;
    RadialAxis.AutoMinMax := False;
    RadialAxis.Min := 100;
    RadialAxis.Max := 200;
    RadialAxis.ScaleType := BubbleChartAxisScaleType.Uniform;
    (Eax As IMetabaseObject).Save;
End Sub UserProc;

After executing the example parameters of the bubble size scale are set up.

Fore.NET Example

Executing the example requires an express report with the EXPRESS_REPORT identifier. The express report is set up to ensure bubble chart displaying and operation. The specified procedure is an entry point for a .NET assembly.

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

Public Shared Sub Main(Params: StartParams);
Var
    MB: IMetabase;
    Eax: IEaxAnalyzer;
    Bubble: IBubbleChart;
    RadialAxis: IBubbleChartAxis;
Begin
    MB := Params.Metabase;
    Eax := MB.ItemById["EXPRESS_REPORT"].Edit() As IEaxAnalyzer;
    Bubble := Eax.BubbleChart.Chart;
    //Bubble size scale
    RadialAxis := Bubble.RadialAxis;
    RadialAxis.AutoMinMax := False;
    RadialAxis.Min := 100;
    RadialAxis.Max := 200;
    RadialAxis.ScaleType := BubbleChartAxisScaleType.bcastUniform;
    (Eax As IMetabaseObject).Save();
End Sub;

After executing the example parameters of the bubble size scale are set up.

See also:

IBubbleChart