Category / Section
How to hide the grid lines in chart area?
1 min read
The gridlines can be hidden by setting the ShowGridLines property of ChartArea Class to False in ChartAxis tag. The following code illustrates this.
<syncfusion:ChartArea GridBackground="White" Background="Transparent" BorderBrush="Transparent"> <syncfusion:ChartArea.PrimaryAxis> <syncfusion:ChartAxis syncfusion:ChartArea.ShowGridLines="False"/> </syncfusion:ChartArea.PrimaryAxis> </syncfusion:ChartArea>