2012-03-22 202 views
0

我使用MS Chart在asp.Net4.0中創建了條形圖。即Excel條形圖顯示Y軸C#

enter image description here

同一圖表我想在Excel中顯示,所以我試圖用C#創建同一個圖表,但是我不能夠顯示Y軸的類別。請建議我如何做到這一點。 假設數據是:

類別值 Cate1 -8 Cate2 4 Cate3 2 Cate4 -8 Cate5 0

在Excel中顯示: enter image description here

回答

0

最後我的幫助下完成這個自己的Excel設置:)

Axis yAxes = (Axis)xlChart.Axes(XlAxisType.xlCategory, XlAxisGroup.xlPrimary); 
yAxes.MajorTickMark = XlTickMark.xlTickMarkCross; 
yAxes.TickLabelPosition = XlTickLabelPosition.xlTickLabelPositionLow; 

希望所以我t會幫助某人。

謝謝,