plotAreaBorderWidth property

double plotAreaBorderWidth
final

Border width of the plot area.

Defaults to 0.7.

Widget build(BuildContext context) {
   return Container(
       child: SfCartesianChart(
           plotAreaBorderColor: Colors.red,
           plotAreaBorderWidth: 2
       )
   );
}

Implementation

final double plotAreaBorderWidth;