有了这里的图像,我希望我的 AxisX 标签(Mar Apr May Jun ... Totals)完全对齐,而不是如图所示交替。我应该修改哪些属性?如果您能尽快提供答案,将不胜感激。
问问题
475 次
1 回答
0
经过一番修改,我终于找到了解决上述问题的属性。
Chart1.ChartAreas["ChartArea1"].AxisX.LabelAutoFitStyle = LabelAutoFitStyles.WordWrap;
//This is a style that automatically changes during runtime.
//I added another line for the font size, just to be sure. Consider it optional.
Chart1.ChartAreas["ChartArea1"].AxisX.LabelAutoFitMinFontSize = 11;
于 2013-03-14T10:21:49.650 回答