Hello,
I'm attempting to display a chart legend but I'm running into an issue. The Title of series (there are three series) displays but the colour portion of the legend is not being displayed. I have tried both forms below:
<telerikPrimitives:RadLegendControl LegendProvider="{Binding ElementName=someChart}" Grid.Row="3">
and
<DataTemplate> <StackPanel Orientation="Horizontal"> <Ellipse Fill="{Binding Fill}" Stroke="{Binding Stroke}" StrokeThickness="1" Width="10" Height="10"/> <TextBlock Text="{Binding Title}" Foreground="{Binding Fill}" Margin="10"/> </StackPanel> </DataTemplate>
I inspected the items being bound to the Ellipse and TextBlock and they're LegendItem's but it seems that the Fill and Stroke aren't set to anything.
Is this a known issue?
Notes that I'm using UI for Universal Windows Platform (version 2015.3.1117).
Thanks,
Tim