IChartAxis.TextAngle

Syntax

TextAngle: Double;

Description

The TextAngle property determines a label rotation angle.

Example

This example assumes that there is the ChartAxis object of the IChartAxis type.

Sub Angle;
Var
    ChartAxis : IChartAxis;
Begin
    ChartAxis.TextAngle := 5;
End Sub Angle;

After executing the example, the text along the axis is offset by five degrees counter-clockwise.

See also:

IChartAxis