Category / Section
How to rotate axis label in the WPF Chart (SfChart)?
1 min read
You can change the rotation of the axis labels by using LabelRotationAngle property in WPF Chart (SfChart).
Note:
It is explained with positive as well as negative rotations of the axis labels. Positive rotations in XAML and negative rotations in code behind.
XAML
<syncfusion:SfChart.PrimaryAxis > <syncfusion:CategoryAxis Header="Product" LabelRotationAngle="45"/> </syncfusion:SfChart.PrimaryAxis>
The following screenshot illustrates the output of the axis labels that have been rotated to 45°.
C#
this.axisChart.PrimaryAxis.LabelRotationAngle = -270;
The following screenshot illustrates the output of the axis labels that have been rotated to –270°.