borderColor property

Color borderColor
final

Border color of the chart.

Defaults to Colors.transparent.

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

Implementation

final Color borderColor;