legendBackgroundColor property

Color? legendBackgroundColor
final

Specifies the background color of the legend.

Widget build(BuildContext context) {
  return Scaffold(
    body: Center(
      child: SfTheme(
        data: SfThemeData(
          chartThemeData: SfChartThemeData(
            legendBackgroundColor: Colors.grey[400]
          )
        ),
        child: SfCartesianChart(
          legend: Legend(isVisible: true),
          series: <ChartSeries<Sample,num>>[
            LineSeries(
              dataSource: chartData,
              xValueMapper: (Sample data, _) => data.x,
              yValueMapper: (Sample data, _) => data.y
            )
          ],
        )
      ),
    )
  );
}

Implementation

final Color? legendBackgroundColor;