plotAreaBackgroundColor property
Background color of the plot area.
Defaults to null.
Widget build(BuildContext context) {
   return Container(
       child: SfCartesianChart(
           plotAreaBackgroundColor: Colors.red,
       )
   );
}
Implementation
final Color? plotAreaBackgroundColor;