IChartCircleInfo.StartAngle

Syntax

StartAngle: Double;

Description

The StartAngle property determines an rotation angle for a pie chart.

Comments

The property is set to zero by default.

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 Angle;
Var
    Chart: IChart;
Begin
    Chart.CircleInfo.StartAngle := 
30;
End Sub Angle;

After executing the example the axis of the pie chart is rotated 30 degrees.

See also:

IChartCircleInfo