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 )); }