Segment spacing in .NET MAUI Funnel Chart
29 Oct 20241 minute to read
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;