mschart Ax-Y刻度值

时间:2012-01-20 13:37:45

标签: mschart

如何摆脱MS Chart的Ax Y中的分数点刻度,

我希望值为1,2,3,...等

enter image description here

1 个答案:

答案 0 :(得分:2)

它应该是这样的:

var chart = new Chart();
chart.ChartAreas.Add(new ChartArea());

chart.ChartAreas[0].AxisY.LabelStyle.Format = "0";

另请参阅:axis formatting

编辑:

穆斯塔法的评论是正确的。上面的行将重新显示y轴上的所有刻度线,格式为“0”。为了以1的间隔显示刻度线,请按照他的说法进行操作:

chart.ChartAreas[0].AxisY.LabelStyle.Interval = 1;