margin property

EdgeInsets margin
final

Specifies the margin for circular chart.

Defaults to const EdgeInsets.fromLTRB(10, 10, 10, 10).

Widget build(BuildContext context) {
   return Container(
       child: SfCircularChart(
           margin: const EdgeInsets.all(2)
       )
   );
}

Implementation

final EdgeInsets margin;