selectedBorderColor property
Border color of the selected data points or series.
Widget build(BuildContext context) {
return Container(
child: SfCartesianChart(
series: <BarSeries<SalesData, num>>[
BarSeries<SalesData, num>(
selectionSettings: SelectionSettings(
selectedBorderColor: Colors.red,
),
),
],
));
}
Implementation
final Color? selectedBorderColor;