explode property
Enables or disables the explode of slices on tap.
Default to false
.
Widget build(BuildContext context) {
return Container(
child: SfFunnelChart(
series: FunnelSeries<ChartData, String>(
explode: true)
)
);
}
Implementation
final bool explode;