Skip to main content
A newer version of this page is available. .

AxisBase.LabelAngle Property

Specifies a rotation angle for axis labels. The angle is measured in degrees, and clockwise from the horizontal.

Namespace: DevExpress.WinUI.Charts

Assembly: DevExpress.WinUI.Charts.v22.1.dll

NuGet Package: DevExpress.WinUI

Declaration

[DP(0, Handler = "InvalidateLayout")]
public double LabelAngle { get; set; }

Property Value

Type Description
Double

An angle in degrees.

Remarks

The following example shows how to rotate x-axis labels by 45 degrees:

Chart axis labels are rotated

<Charts:CartesianChart.AxisX>
    <Charts:AxisX LabelAngle="45"/>
</Charts:CartesianChart.AxisX>
See Also