This question is locked. New answers and comments are not allowed.
Hello,
Up until now I have been using the DefaultView.ChartArea, with multiple Series being populated via setting the Chart's SeriesMappings collection.
I am now looking to move to a more complex Chart layout so that I have full control over the legend (from this blog post).
My frist step towards doing this is to change from the default layout to a custom layout (no legend yet). My XAML looks like this:
In my code behind I have changed over all my _RadChart.DefaultView.ChartArea references to _ChartArea, but now my series do not appear to load at all, and I am faced with the "NoDataString" text.
I searched online, and I found how to setup a custom layout but it uses the DataSeries method. Can you please give me an example which does custom layouts with SeriesMappings?
Thank you!
Up until now I have been using the DefaultView.ChartArea, with multiple Series being populated via setting the Chart's SeriesMappings collection.
I am now looking to move to a more complex Chart layout so that I have full control over the legend (from this blog post).
My frist step towards doing this is to change from the default layout to a custom layout (no legend yet). My XAML looks like this:
<control:RadChart x:Name="_RadChart" UseDefaultLayout="False"> <Grid> <!-- Chart Grid Layout Definitions --> <Grid.ColumnDefinitions> <ColumnDefinition Width="50"/> <ColumnDefinition Width="*"/> </Grid.ColumnDefinitions> <Grid.RowDefinitions> <RowDefinition Height="*"/> <RowDefinition Height="50"/> </Grid.RowDefinitions> <!--ChartArea--> <chart:ChartArea x:Name="_ChartArea" EnableAnimations="false" LegendName="CustomLegend" Grid.Column="1" /> </Grid></control:RadChart>In my code behind I have changed over all my _RadChart.DefaultView.ChartArea references to _ChartArea, but now my series do not appear to load at all, and I am faced with the "NoDataString" text.
I searched online, and I found how to setup a custom layout but it uses the DataSeries method. Can you please give me an example which does custom layouts with SeriesMappings?
Thank you!