This question is locked. New answers and comments are not allowed.
Is it possible to configure xaml RadChart binding to choose the number of series? (xaml only, no code behind, no C#, no VB)
For instance, can you choose between two bar series or three bar series based on a xaml binding? (Without using code behind) Or must you have a fixed number of series in xaml?
Here is an example of two fixed series. Can I configure this differently so I can programatically choose the number of series with xaml.
For instance, can you choose between two bar series or three bar series based on a xaml binding? (Without using code behind) Or must you have a fixed number of series in xaml?
Here is an example of two fixed series. Can I configure this differently so I can programatically choose the number of series with xaml.
<telerik:RadChart.SeriesMappings>
<telerik:SeriesMapping>
<telerik:ItemMapping DataPointMember="YValue" FieldName="Upload" />
<telerik:ItemMapping DataPointMember="XCategory" FieldName="Name" />
</telerik:SeriesMapping>
<telerik:SeriesMapping>
<telerik:ItemMapping DataPointMember="YValue" FieldName="Download" />
<telerik:ItemMapping DataPointMember="XCategory" FieldName="Name" />
</telerik:SeriesMapping>
</telerik:RadChart.SeriesMappings>