borderWidth property

  1. @override
double borderWidth
final

Border width of the data points in the series.

Defaults to 0.

Widget build(BuildContext context) {
   return Container(
       child: SfCircularChart(
           borderWidth: 2
       )
   );
}

Implementation

@override
final double borderWidth;