This question is locked. New answers and comments are not allowed.
Good day!
I'm making a Windows Store app and wish to display data with one of your charts.
In this case I have a List collection of Payment objects which includes the Properties: Month, Principle, Interest
I have the chart series bound to my collection but am only seeing one bar.
How do I have one bar that shows the Principle amount and then next to it the Interest amount?
I'm making a Windows Store app and wish to display data with one of your charts.
In this case I have a List collection of Payment objects which includes the Properties: Month, Principle, Interest
I have the chart series bound to my collection but am only seeing one bar.
How do I have one bar that shows the Principle amount and then next to it the Interest amount?
See XAML below
Thanks,
Paul
<telerik:RadCartesianChart Name="Chart" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Height="624" PaletteName="DefaultDark" SelectionPaletteName="DefaultDarkSelected"> <telerik:RadCartesianChart.Grid> <telerik:CartesianChartGrid MajorLinesVisibility="Y"></telerik:CartesianChartGrid> </telerik:RadCartesianChart.Grid> <telerik:RadCartesianChart.VerticalAxis> <telerik:LinearAxis ></telerik:LinearAxis> </telerik:RadCartesianChart.VerticalAxis> <telerik:RadCartesianChart.HorizontalAxis> <telerik:DateTimeCategoricalAxis DateTimeComponent="Month" LabelFormat="{}{0,0:MMM}" ></telerik:DateTimeCategoricalAxis> </telerik:RadCartesianChart.HorizontalAxis> <telerik:RadCartesianChart.Series> <telerik:BarSeries CombineMode="Cluster"> <telerik:BarSeries.ValueBinding> <telerik:PropertyNameDataPointBinding PropertyName="Interest"></telerik:PropertyNameDataPointBinding> </telerik:BarSeries.ValueBinding> <telerik:BarSeries.CategoryBinding> <telerik:PropertyNameDataPointBinding PropertyName="Month"></telerik:PropertyNameDataPointBinding> </telerik:BarSeries.CategoryBinding> </telerik:BarSeries> <telerik:BarSeries CombineMode="Cluster"> <telerik:BarSeries.ValueBinding> <telerik:PropertyNameDataPointBinding PropertyName="Principle"></telerik:PropertyNameDataPointBinding> </telerik:BarSeries.ValueBinding> <telerik:BarSeries.CategoryBinding> <telerik:PropertyNameDataPointBinding PropertyName="Month"></telerik:PropertyNameDataPointBinding> </telerik:BarSeries.CategoryBinding> </telerik:BarSeries> </telerik:RadCartesianChart.Series></telerik:RadCartesianChart>