IChart.CircleInfo

Syntax

CircleInfo: IChartCircleInfo;

Description

The CircleInfo property enables a user to determine parameters of a pie chart.

Comments

Use the IChartCircleInfo interface to work with available parameters.

Example

This example assumes that there is the Chart object of the IChart type. You need a pie chart for this example. If required, the chart can be transformed into a pie chart by running the command: Chart.Type := 5 As ChartType;.

Sub Circle;
Var
    Chart: IChart;
Begin
    Chart.CircleInfo.FixedRadius:= 30;
End Sub Circle;

After executing the example the radius of the pie chart is equal to 30 millimeters.

See also:

IChart