This question is locked. New answers and comments are not allowed.
I am adding a dropshadow style to a LineSeries using the following style:
<Style x:Key="chartLineSeriesDropShadowStyle" TargetType="telerik:SelfDrawingSeries"> <Setter Property="Effect"> <Setter.Value> <DropShadowEffect Opacity=".60" ShadowDepth="2" BlurRadius="6" /> </Setter.Value> </Setter> </Style>When I do this however, the line series ignores the theme color palette and all lines in the series only use the first color in the theme. I think I may need to also re-template the SelfDrawingSeries to get this to work.
How do I get this to work with themes? I am currently using the Summer theme.