How can I assign an image as the background of a chart?
Backgrountimage property doesn't seem to work
<SfChart Theme="Theme.Bootstrap5Dark" Background="transparent" BackgroundImage="~/images/Tormenta.jpg">
<ChartArea BackgroundImage="~/images/Tormenta.jpg">
<ChartAreaBorder Width="5" ></ChartAreaBorder>
<ChartPrimaryXAxis ValueType="Syncfusion.Blazor.Charts.ValueType.DateTime"></ChartPrimaryXAxis>
<ChartSeriesCollection>
<ChartSeries DataSource="realTimeData" XName="TimeLine" YName="Point" Type="Syncfusion.Blazor.Charts.ChartSeriesType.Line"></ChartSeries>
</ChartSeriesCollection></ChartArea>
</SfChart>