Hello,
I am trying to reproduce this SfLinearGauge with SfGauge(18.3.0.53) but it doesnt seem to work :
<gauge:SfLinearGauge BackgroundColor="White" >
<gauge:SfLinearGauge.Scales>
<gauge:LinearScale OpposedPosition="True" MinimumValue="0" MaximumValue="150" ShowTicks="False" ShowLabels = "False" ScaleBarColor="Aqua" ScaleBarSize = "30" >
<gauge:LinearScale.Pointers>
<gauge:BarPointer Thickness="30" Value="100" EnableAnimation = "false" Color = "Blue" />
<gauge:SymbolPointer Value ="76" Thickness="20" EnableAnimation ="False" Color= "Black" SymbolPointerPosition="Far" MarkerShape="Triangle"/>
</gauge:LinearScale.Pointers>
</gauge:LinearScale>
</gauge:SfLinearGauge.Scales>
<gauge:SfLinearGauge.Annotations>
<gauge:LinearGaugeAnnotation ScaleValue ="76" HorizontalViewAlignment="Center" VerticalViewAlignment="Center" >
<gauge:LinearGaugeAnnotation.View>
<Label Text="76%" HeightRequest="50" HorizontalTextAlignment="End" VerticalTextAlignment="End" FontAttributes = "Bold" TextColor="White" FontSize ="15"/>
</gauge:LinearGaugeAnnotation.View>
</gauge:LinearGaugeAnnotation>
</gauge:SfLinearGauge.Annotations>
</gauge:SfLinearGauge>
The LinearGaugeAnnotation seems to disregard the properties ScaleValue, OffsetX, OffsetY and always appears in the start of the control ! Is there a known problem?