IChart.CircleInfoEx

Fore Syntax

CircleInfoEx: IChartCircleExInfo;

Fore.NET Syntax

CircleInfoEx: Prognoz.Platform.Interop.Chart.IChartCircleExInfo;

Description

The CircleInfoEx property determines parameters of the pie chart with a secondary pie or a bar chart.

Comments

To work with available parameters, use the IChartCircleExInfo interface.

Fore Example

This example assumes that there is the Chart object of the IChart type. The chart must be a pie chart with a pie of pie or a bar of pie. If required, the chart can be transformed into a pie chart by running the command: Chart.Type := 10 As ChartType;.

Sub Circle;
Var
    Chart : IChart;
Begin
    Chart.CircleInfoEx.ShowMode:= ChartSecondaryShowMode.OnlySecondary;
End Sub Circle;

After executing the example, only the secondary chart is displayed.

Fore.NET Example

This example assumes that there is the Chart object of the IChart type. The chart must be a pie chart type with secondary pie or bar chart. If required, the chart can be transformed into a pie chart by running the command: Chart.Type := 10 As ChartType;.

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

...

Private Sub button1_Click(sender: System.Object; e: System.EventArgs);
Var
    Chart : IChart;
Begin
    Chart := UiChartNet1.ChartUi.Chart;
    Chart.CircleInfoEx.ShowMode:= ChartSecondaryShowMode.cssmOnlySecondary;
End Sub;

Clicking this button displays only the secondary chart.

See also:

IChart