I've turned all of the grid lines off of the chart, but I can't seem to figure out how to get rid of the gray border around the chart itself. I want nothing but the line to be displayed. How do I toggle this off?
<SfChart Height="100px" Width="450px" >
<ChartBorder Color="#fff" />
<ChartPrimaryXAxis ValueType="Syncfusion.Blazor.Charts.ValueType.DateTime" LabelFormat="ddd" Visible="false"></ChartPrimaryXAxis>
<ChartPrimaryYAxis ValueType="Syncfusion.Blazor.Charts.ValueType.Double" Visible="false"></ChartPrimaryYAxis>
<ChartTooltipSettings Enable="true"></ChartTooltipSettings>
<ChartSeriesCollection>
<ChartSeries DataSource="@Ratios"
XName="ReportDate"
YName="Ratio"
Type="ChartSeriesType.Spline"
Fill="@(LineColor())">
<ChartMarker Visible="true" Height="10" Width="10" />
</ChartSeries>
</ChartSeriesCollection>
</SfChart>