IChartCircleInfo.ConcentricDistance

Syntax

ConcentricDistance: Double;

Description

The ConcentricDistance property determines the distance between concentric circles.

Comments

The default distance is zero.

Example

This example assumes that there is the Chart object of the IChart type. The chart must be a pie chart. If required, the chart can be transformed into a pie chart by executing the command: "Chart.Type := 5 As ChartType"

Add a link to the Chart system assembly.

Sub Concentric;
Var
    Chart: IChart;
Begin
    Chart.CircleInfo.ConcentricDistance := 
3;
End Sub Concentric;

After executing the example the specified distance is set between the concentric circles.

See also:

IChartCircleInfo