2016-02-03 100 views

回答

0

我只知道如何設置格式爲百分比Y軸標籤:

chart.YAxis.TickLabels.Format = "#0%";

我不知道是否有改變Y軸標籤沒有,如果有一些其他的方法其他TickLabels.Format格式,因爲我找不到有關該主題的任何文檔。

編輯:我不確定,但看起來像TickLabels.Format使用的格式遵循這裏描述的規則:https://msdn.microsoft.com/en-us/library/0c899ak8.aspx。 再一次,這隻有在您只想更改Y軸標籤的格式時纔有用。

0

我做了這樣的:

Chart plotter = new Chart(); 

// add your series and datapoints here... 

// Format Y - Axis 
plotter.YAxis.MinimumScale = -100; 
plotter.YAxis.MaximumScale = 100; 
plotter.YAxis.MajorTick = 50; 
plotter.YAxis.MajorTickMark = TickMarkType.Outside; 

結果看起來是這樣的:

enter image description here