I am using MVVM and RadChart
<chart:RadChart x:Name="RadChart1" ItemsSource="{Binding Data}" >
<chart:RadChart.DefaultSeriesDefinition>
<charting:BarSeriesDefinition />
</chart:RadChart.DefaultSeriesDefinition>
</chart:RadChart>
My Data is List
of Products
that has inside int
and string
.
How I can make the int
be Y Axis
and string
X Axis
value?
Thanks.
Found a solution , thanks .