Same Values different Text on Custom Labels between UWP and Android

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

2 Replies 1 reply marked as answer

RS Ruba Shanmugam Syncfusion Team March 8, 2021 08:49 AM UTC

Hi Macro,

Thank you for using Syncfusion product.

We have validated your query and we could able to reproduce the same issue at our end. We would like to let you know that we have already fixed the reported issue and fix will be included in our upcoming weekly release. Which is expected to be rolled out on March 9, 2021. We appreciate your patience until then.

Regards,
Ruba Shanmugam


RS Ruba Shanmugam Syncfusion Team March 9, 2021 05:50 AM UTC

Hi Macro,

Thanks for the patience.

We have included the fix in our latest Weekly NuGet release v18.4.0.47 which is available for download (https://www.nuget.org/). We thank you for your support and appreciate your patience in waiting for this update. Please get in touch with us if you would require any further assistance.

Regards,
Ruba Shanmugam

Marked as answer
Loader.
Up arrow icon