plotAreaBorderColor property

Color? plotAreaBorderColor
final

Border color of the plot area.

Defaults to Colors.grey.

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

Implementation

final Color? plotAreaBorderColor;