unselectedColor property

Color? unselectedColor
final

Color of the unselected data points or series.

late SelectionBehavior selectionBehavior;

void initState() {
  selectionBehavior = SelectionBehavior(
    enable: true,
    unselectedColor: Colors.red
  );
  super.initState();
}

Widget build(BuildContext context) {
  return SfCartesianChart(
    series: <BarSeries<SalesData, num>>[
      BarSeries<SalesData, num>(
        selectionBehavior: selectionBehavior
      ),
    ],
  );
}

Implementation

final Color? unselectedColor;