This question is locked. New answers and comments are not allowed.
Is it possible to set the opacity for the fill on a particular series? When using the default (PhoneAccentBrush) the chart will automatically set the opacity so both series can be seen
ie.
So I can have opacity.
However, if I set the colour to the apps theme the opacity gets overridden and the colours become solid
Am I missing something?
ie.
<Controls:AreaSeries DisplayName="2011" CategoryBinding="month" ValueBinding="Amount" CombineMode="Cluster" x:Name="_2012" ItemsSource="{Binding}">So I can have opacity.
However, if I set the colour to the apps theme the opacity gets overridden and the colours become solid
<br><Controls:AreaSeries DisplayName="2011" CategoryBinding="month" Fill="{StaticResource clDark" ValueBinding="Amount" CombineMode="Cluster" x:Name="_2012" ItemsSource="{Binding}" Opacity="0.4" >Am I missing something?