I am tryin to use FormatString as cm, this code works fine on Android but It doesnt work on UWP. there are problems as
1) after binding first time, it doesnt display cm suffix
2) when I press up down buttons, numer disappears, only displays cm
<Style x:Key="NumericStyle" TargetType="numeric:SfNumericUpDown">
<Setter Property="HeightRequest" Value="60"/>
<Setter Property="HorizontalOptions" Value="FillAndExpand"/>
<Setter Property="VerticalOptions" Value="Start"/>
<Setter Property="TextColor" Value="Black"/>
<Setter Property="AllowNull" Value="true"/>
<Setter Property="ParsingMode" Value="Decimal"/>
<Setter Property="Maximum" Value="500"/>
<Setter Property="FontSize" Value="10" />
</Style>
<numeric:SfNumericUpDown MaximumDecimalDigits="2" Style="{StaticResource NumericStyle}" x:Name="heightNumericUpDown"
FormatString="cm" Value="{Binding height}" />