Hi Juan,
Greetings from Syncfusion.
We can achieve your requirement by using RangeCap property in range pointers without scale as in the below code snippet.
[XAML]
<gauge:SfCircularGauge HorizontalOptions="Center" VerticalOptions="Center">
<gauge:SfCircularGauge.Annotations>
<gauge:GaugeAnnotation VerticalAlignment="Start">
<gauge:GaugeAnnotation.View>
<Label Text="1.2 of 44" TextColor="Black" FontSize="25"/>
</gauge:GaugeAnnotation.View>
</gauge:GaugeAnnotation>
</gauge:SfCircularGauge.Annotations>
<gauge:SfCircularGauge.Scales>
<gauge:Scale ShowRim="False" ShowLabels="False" ShowTicks="False">
<gauge:Scale.Pointers>
<gauge:RangePointer RangeStart="0" EnableAnimation="False" Value="100" Color="Gray" RangeCap="Both" />
<gauge:RangePointer RangeStart="0" Value="80" Color="Blue" RangeCap="Both" />
</gauge:Scale.Pointers>
</gauge:Scale>
</gauge:SfCircularGauge.Scales>
</gauge:SfCircularGauge> |
Output:
Please let us know if you need any further assistance.
Thanks,
Rachel.