CircleInfoEx: 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.
See also: