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>
需要幫助。
我給了它的名稱,不能在代碼隱藏中設置標題。 – Hukam
這種方式: CategoryAxis xAxis = this.chart.ActualAxes.Where(a => a.Orientation == AxisOrientation.X).FirstOrDefault()as CategoryAxis; xAxis.Title =「title」; – Slyvain
非常感謝您的幫助。更多設置標題後,問題數量值顯示在圖表右側。 – Hukam