1

ここの画像では、AxisX ラベル (3 月、4 月、5 月、6 月 ... 合計) を、示されているように交互に配置するのではなく、完全に整列させたいと考えています。どのプロパティを変更する必要がありますか? できるだけ早く回答を提供していただければ幸いです。

ここに画像の説明を入力

4

1 に答える 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 に答える