<chart:StackingArea100Series x:Name="stackingSeries" ItemsSource="{Binding Data}" XBindingPath="XValue" YBindingPath="YValue" >
<chart:StackingArea100Series.XAxis>
<chart:NumericalAxis IsVisible="False"/>
</chart:StackingArea100Series.XAxis>
<chart:StackingArea100Series.YAxis>
<chart:NumericalAxis IsVisible="False" />
</chart:StackingArea100Series.YAxis>
<chart:StackingArea100Series.ColorModel>
<chart:ChartColorModel Palette="Custom">
<chart:ChartColorModel.CustomGradientColors>
<chart:ChartGradientColor StartPoint="0.5,1" EndPoint="0.5, 0">
<chart:ChartGradientColor.GradientStops>
<chart:ChartGradientStop x:Name="stop1" Color="Red" Offset= "0"/>
<chart:ChartGradientStop Color="Yellow" Offset= "0.6"/>
<chart:ChartGradientStop x:Name="stop3" Color="Green" Offset= "1"/>
</chart:ChartGradientColor.GradientStops>
</chart:ChartGradientColor>
</chart:ChartColorModel.CustomGradientColors>
</chart:ChartColorModel>
</chart:StackingArea100Series.ColorModel>
</chart:StackingArea100Series> |