Hello,
is it possible to set styles from resource dictionary? Fo instance having this in my SfChart:
<NumericalAxis AxisLineStyle="{StaticResource ChartAxisLineStyle}" />
And this in my ResourceDictionary:
<sfc:ChartLineStyle x:Key="ChartAxisLineStyle" StrokeColor="Gray" />
Or this in my ResourceDictionary:
<Style x:Key="ChartAxisLineStyle" TargetType="sfc:ChartLineStyle">
<Setter Property="StrokeColor" Value="Orange" />
</Style>
I seem to have problems making it work. Thank you!