Hello Community,
it's very tricky for me to resolve following behavior:
Here is my XAML:
```
<rangeslider:SfRangeSlider x:Name="ZinsrangeSlider" Orientation="Horizontal" ShowRange="False"
KnobColor="{DynamicResource AccentPrimaryColor}"
TrackColor="{DynamicResource PrimaryColor}"
TrackSelectionColor="{DynamicResource AccentPrimaryColor}"
Minimum="5" Maximum="30" TickFrequency="5" StepFrequency="5" TickPlacement="Inline" ThumbSize="1.5" TrackSelectionThickness="5"
LabelPlacement="BottomRight" ShowCustomLabel="True" Value="{Binding Finanzierung.Zinsbindung, Mode=TwoWay}"
SnapsTo="Ticks" FontSize="12" LabelColor="{DynamicResource PrimaryColor}">
<rangeslider:SfRangeSlider.CustomLabels>
<extensions:ObservableCollectionList>
<rangeslider:Items Label="5" Value="5"/>
<rangeslider:Items Label="10" Value="10"/>
<rangeslider:Items Label="15" Value="15"/>
<rangeslider:Items Label="20" Value="20"/>
<rangeslider:Items Label="25" Value="25"/>
<rangeslider:Items Label="30" Value="30"/>
</extensions:ObservableCollectionList>
</rangeslider:SfRangeSlider.CustomLabels>
</rangeslider:SfRangeSlider>
```
And this is my output on UWP (fine):
And here's my Android App:
The control gets the same values so I'm courious what I'm looking for.
Thank you very much.
Marco