CircleInfoEx: IChartCircleExInfo;
CircleInfoEx: Prognoz.Platform.Interop.Chart.IChartCircleExInfo;
The CircleInfoEx property determines parameters of the pie chart with a secondary pie chart or a histogram.
Use the IChartCircleExInfo interface to work with available parameters.
This example assumes that there is the Chart object of the IChart type. The chart must be a pie chart with a secondary pie chart or a histogram. If required, the chart can be transformed into a pie chart by executing 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.
This example assumes that there is the Chart object of the IChart type. The chart must be a pie chart with a secondary pie or a histogram. If required, the chart can be transformed into a pie chart by executing 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: