2011-07-06 229 views
0

我有一個圖表的ColumnSeries及其工作正常,但我想補充爲x軸主標籤和沒有問題在Ÿ主標籤的 - 軸。x和y軸標籤的Silverlight圖表

<toolkit:Chart Title="Issue Occurrence Trend"> 
     <toolkit:ColumnSeries ItemsSource="{Binding}" AnimationSequence="Simultaneous" IndependentValueBinding="{Binding Month}" DependentValueBinding="{Binding NoIssue}" > 
     </toolkit:ColumnSeries> 
    </toolkit:Chart> 

需要幫助。

回答

3

是否這樣?

<toolkit:Chart Title="Issue Occurrence Trend"> 

<toolkit:Chart.Axes> 
<toolkit:CategoryAxis Title="Month" Orientation="X" /> 
<toolkit:CategoryAxis Title="No of Issue" Orientation="Y" /> 
</toolkit:Chart.Axes> 

<toolkit:ColumnSeries ItemsSource="{Binding}" AnimationSequence="Simultaneous" IndependentValueBinding="{Binding Month}" DependentValueBinding="{Binding NoIssue}" > 
</toolkit:ColumnSeries> 
</toolkit:Chart> 
+0

我給了它的名稱,不能在代碼隱藏中設置標題。 – Hukam

+0

這種方式: CategoryAxis xAxis = this.chart.ActualAxes.Where(a => a.Orientation == AxisOrientation.X).FirstOrDefault()as CategoryAxis; xAxis.Title =「title」; – Slyvain

+0

非常感謝您的幫助。更多設置標題後,問題數量值顯示在圖表右側。 – Hukam