TextAngle: Double;
The TextAngle property determines rotation angle for a text.
The following example assumes that there is a UiChart1 object of the UiChart type.
Sub TextAngle;
Var
UiChart1: UiChart;
Cap : IChartCaption;
Begin
Cap := UiChart1.Chart.AxisY.Caption;
Cap.Text := "Rubles";
Cap.TextAngle := -10;
UiChart1.Chart.Refresh;
End Sub TextAngle;
Executing the example rotates the title on the Y-axis by the specified angle.
See also: