I have a Barchart in my Silverlight Application which are binded with two values i.e date is showing in the Y-Axis and Records are showing in X-Axis..But i want to show Date in X-axis and Records in Y-Axis.Can any one help on this please...
Here i am binded like this...
<chartingToolkit:Chart.Series>
<chartingToolkit:BarSeries Title="Loaded Records" ItemsSource="{Binding}" IndependentValueBinding="{Binding RowAddedOn}" DependentValueBinding="{Binding Records}">
chartingToolkit:BarSeries>
chartingToolkit:Chart.Series>
chartingToolkit:Chart>
Now to Swap the Axes of the Chart With the Values!!!
Please help on this....
Thanks,
Prasant

Prasant JinagaPosted Aug 19, 2011, 1:23 AM
Tha Problem has been resolved when i used Column Series!!!
Thanks,
Prasant
Jaganathan BantheswaranPosted Aug 19, 2011, 1:06 AM
Try like this,
<chartingToolkit:BarSeries.IndependentAxis>
<chartingToolkit:CategoryAxis Orientation="X" /> // X or Y
chartingToolkit:BarSeries.IndependentAxis>