borderWidth property

double borderWidth
final

Border width of the chart

Widget build(BuildContext context) {
   return Container(
       child: SfCircularChart(
           borderWidth: 2,
           borderColor: Colors.red
       ));
}

Implementation

final double borderWidth;