I was able to make a gradient color Chart Area when RenderingMode is SVG. But it's not working on RenderingMode.Canvas.
What do I need to change?
What I use is:
<ChartSeries Color="url(#svg-gradient)"
where:
<svg xmlns="https://www.w3.org/2000/svg" version="1.1" width="0" height="0" style="visibility: hidden">
<defs><linearGradient id="svg-gradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color: #c2dc8b; stop-opacity: 1.0"/>
<stop offset="100%" style="stop-color: #c2dc8b; stop-opacity: 0.1"/>
</linearGradient>
</defs>
</svg>