gapRatio property
Gap ratio between the segments of funnel.
Ranges from 0 to 1.
Defaults to 0
.
Widget build(BuildContext context) {
return Container(
child: SfFunnelChart(
series: FunnelSeries<ChartData, String>(
gapRatio: 0.3
)
);
}
Implementation
final double gapRatio;