how to change the direction of X-axis label in ms charts

user682417 picture user682417 · Jul 18, 2011 · Viewed 33.9k times · Source

Hi I am using Ms chart control in winforms application for displaying values according to dates

I need to change the x-axis label values(Dates) direction horizantal to vertical

I have searched so many properties but i did not find any solution for this.

Any one help me on this problem

enter image description here

Many Thanks ....

Answer

JHubbard80 picture JHubbard80 · Jul 25, 2011

As I understand your question - you are asking how to rotate the chart label to display vertically.

You can rotate the x-axis label as follows:

chart1.ChartAreas[0].AxisX.LabelStyle.Angle = -90;

This assumes you have associated your series with the first chart area, which is the default without modification when using the Winforms designer.

The following images shows how the chart would look before the code above is applied, the second image shows how it appears after the code is applied.

Let me know if this is not what you are trying to do and I will post an updated answer.

Before rotation
Before Rotation

After Rotation
enter image description here

Edit: Another answer added after my initial post mentions in certain situations it may be important to set chartArea1.AxisX.IsLabelAutoFit = false;