简体   繁体   中英

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

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

在此处输入图像描述

Many Thanks....

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
旋转前

After Rotation
在此处输入图像描述

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

If you have not already done so, get the chart samples from microsoft:
http://archive.msdn.microsoft.com/mschart

Then check the section on Labels
Chart Features > Labels

To answer your question directly, set the angle in LabelStyle, and don't forget to disable autofit

chartArea1.AxisX.IsLabelAutoFit = false;
chartArea1.AxisX.LabelStyle.Angle = 90;

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM