Hi,
I am using the chart control with SeriesMappings. Once I define a custom layout, like below, the chart no longer shows data.
Are SeriesMappings not possible with custom layouts?
Thanks,
Pauly
I am using the chart control with SeriesMappings. Once I define a custom layout, like below, the chart no longer shows data.
| <telerik:RadChart x:Name="RadChart1" UseDefaultLayout="False"> |
| <Grid> |
| <Grid.RowDefinitions> |
| <RowDefinition Height="Auto" /> |
| <RowDefinition Height="*" /> |
| <RowDefinition Height="Auto" /> |
| </Grid.RowDefinitions> |
| <chart:ChartArea x:Name="ChartArea1" LegendName="ChartLegend1" |
| Grid.Row="0" /> |
| <chart:ChartTitle Content="Sample Report" Grid.Row="1" |
| VerticalAlignment="Top" HorizontalAlignment="Center" |
| TextElement.FontWeight="Bold" TextElement.FontSize="24" /> |
| <chart:ChartLegend x:Name="ChartLegend1" Header="Legend:" |
| Grid.Row="2" |
| VerticalAlignment="Top" /> |
| </Grid> |
| </telerik:RadChart> |
Are SeriesMappings not possible with custom layouts?
Thanks,
Pauly