This question is locked. New answers and comments are not allowed.
I am using the following code for custom chart legend. I am unable to remove the border of the legend. Can you please tell me how to do.
<Style x:Key="ChartLegendStyle" TargetType="telerik:ChartLegend"> <Setter Property="Foreground" Value="{StaticResource LegendForeground}" /> <Setter Property="Background" Value="{x:Null}" /> <Setter Property="Padding" Value="10,10,10,5" /> <Setter Property="Margin" Value="0"/> <Setter Property="HorizontalContentAlignment" Value="Stretch" /> <Setter Property="VerticalContentAlignment" Value="Stretch" /> <Setter Property="LegendItemMarkerShape" Value="{StaticResource LegendItemMarkerShape}" /> <Setter Property="Template" > <Setter.Value> <ControlTemplate TargetType="telerik:ChartLegend"> <Border Background="{x:Null}" BorderBrush="{x:Null}" BorderThickness="0" > <Grid Margin="{TemplateBinding Padding}"> <Grid.RowDefinitions> <RowDefinition Height="Auto" /> <RowDefinition Height="*" /> </Grid.RowDefinitions> <ScrollViewer Grid.Row="1" VerticalScrollBarVisibility="Auto" > <ItemsPresenter/> </ScrollViewer> </Grid> </Border> </ControlTemplate> </Setter.Value> </Setter> <Setter Property="ItemsPanel"> <Setter.Value> <ItemsPanelTemplate> <telerik:RadWrapPanel/> </ItemsPanelTemplate> </Setter.Value> </Setter> </Style></UserControl.Resources>