IChartSerieBase.PieDistanceCoef

Syntax

PieDistanceCoef: Double;

Description

The PieDistanceCoef property determines the distance from the center of a pie chart to the last series segment.

Comments

The distance is expressed as a fraction of the diameter of a pie chart.

Example

This example assumes that there is the Serie object of the IChartSerie type.

Sub Pie;
Var
    Serie : IChartSerie;
Begin
    Serie.PieDistanceCoef := 0.2;
End Sub Pie;

After executing the example the end segment of the chart series is drawn aside from the rest at the specified distance.

See also:

IChartSerieBase