borderColor property
Border color of the empty data point.
Defaults to Colors.transparent
.
Widget build(BuildContext context) {
return SfCartesianChart(
series: <BubbleSeries<BubbleColors, num>>[
BubbleSeries<BubbleColors, num>(
emptyPointSettings: EmptyPointSettings(
borderColor: Colors.black,
borderWidth: 2,
mode:EmptyPointMode.average
)
),
],
);
}
Implementation
final Color borderColor;