Segment spacing in .NET MAUI Funnel Chart

The gap between each segment in the funnel chart can be set using the GapRatio property. The default value of GapRatio property is 0 and its value ranges from 0 to 1.

<chart:SfFunnelChart GapRatio="0.2">
    . . .
</chart:SfFunnelChart>
SfFunnelChart chart = new SfFunnelChart();
. . .
chart.GapRatio = 0.2;
this.Content = chart;

Segment spacing in MAUI Chart