我有一個簡單的圖表,我希望X軸上的標籤旋轉45度。我究竟做錯了什麼?C#圖表旋轉標籤
Chart c = new Chart();
c.ChartAreas.Add(new ChartArea());
c.Width = 200;
c.Height = 200;
Series mySeries = new Series();
mySeries.Points.DataBindXY(new string[] { "one", "two", "three" }, new int[] { 1, 2, 3 });
mySeries.LabelAngle = 45; // why doesn't this work?
c.Series.Add(mySeries);
輸出是:
我使用的是從System.Web.UI.DataVisualization.Charting製圖的東西。
我想最近旋轉與區域的對象的標籤,這是行不通的。追加圖表對象使其像魅力一樣工作。 – 2015-12-03 13:57:01