Hello
I would like to set a gradient chart area background in 3 colors like the following example:
All I have found is to set a single color
<ejs-chart id="container" width="100%">
<e-chart-chartarea background="red" ></e-chart-chartarea>
<e-chart-tooltipsettings enable="true"></e-chart-tooltipsettings>
<e-chart-legendsettings visible="false"></e-chart-legendsettings>
<e-chart-primaryxaxis valueType="DateTime" intervalType="Days">
</e-chart-primaryxaxis>
<e-chart-primaryyaxis minimum="0" maximum="120" interval="20" labelFormat="{value}%">
</e-chart-primaryyaxis>
<e-series-collection>
<e-series dataSource="ViewBag.data" xName="x" yName="y" name="Phi" col type="@Syncfusion.EJ2.Charts.ChartSeriesType.Scatter" fill="black"><e-series-marker shape="Circle"></e-series-marker></e-series>
</e-series-collection>
</ejs-chart>
Any help would be great