Show grid lines above area data on radar chart

Is it possible to display the grid lines above the area data on the radar chart so that they are visible? 

1 Reply 1 reply marked as answer

SM Srihari Muthukaruppan Syncfusion Team November 30, 2020 10:04 AM UTC

Hi Michael, 
 
We have analysed your query. From that we would like to let you know that we can achieve your requirement using opacity in the series of the chart. Based on your requirement we have prepared a sample for your reference. Please find the sample, code snippet and screenshot below. 
 
 
Code Snippet: 
<SfChart Title="Average Sales Comparison"> 
            <ChartEvents Load="ChartLoad" /> 
            <ChartTooltipSettings Enable="true"> 
            </ChartTooltipSettings> 
            <ChartPrimaryXAxis Interval="1" Coefficient="100" LabelPlacement="LabelPlacement.OnTicks" ValueType="Syncfusion.Blazor.Charts.ValueType.Category"></ChartPrimaryXAxis> 
            <ChartPrimaryYAxis Title="Revenue in Millios" LabelFormat="{value}M"></ChartPrimaryYAxis> 
            <ChartSeriesCollection> 
                <ChartSeries DataSource="@DataSource" Opacity=0.5 Name="Product A" XName="x" Width="2" YName="y" Type="@SeriesType" DrawType="ChartDrawType.Area"> 
                    <ChartSeriesBorder Color="transparent" Width="0"></ChartSeriesBorder> 
                </ChartSeries> 
            </ChartSeriesCollection> 
        </SfChart> 
 
Screenshot: 
 
 
Let us know if you have any concerns. 
 
Regards, 
Srihari 


Marked as answer
Loader.
Up arrow icon