Articles in this section
Category / Section

How to hide the plot area border line in the Flutter chart (SfCartesianChart) ?

1 min read

SfCartesianChart widget provides options for customizing the plot area border. You can use the plotAreaBorderWidth and plotAreaBorderColor properties to customize the border of the plot area.

 

The border of the plot area can be removed by specifying the plotAreaBorderWidth property as 0. To accomplish this, you can find the code snippet below.

 

 
@override
  Widget build(BuildContext context) {
    return Scaffold(
        body: SfCartesianChart(
            plotAreaBorderWidth: 0,
            // Other configurations
       ));
  }
 

 

plot area border line disabled

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied