margin property
Margin for chart.
Defaults to const EdgeInsets.fromLTRB(10, 10, 10, 10)
.
Widget build(BuildContext context) {
return Container(
child: SfFunnelChart(
margin: const EdgeInsets.all(2),
)
);
}
Implementation
final EdgeInsets margin;