The defaultLabelValue is not working for me..
Here is my code:
| chartControl.ChartTitle.TextBlock.Text = "My RadChart"; |
| ChartSeries chartSeries = new ChartSeries("Sales",ChartSeriesType.Bar); |
| for(int i=0;i<10;i++) |
| { |
| chartSeries.AddItem(i+10,"hello"+i); |
| } |
| chartSeries.DefaultLabelValue = "#Y"; |
| chartControl.AddChartSeries(chartSeries); |
I want the labels to be the integer values instead of the string displayed..
Thks for your help.