The Slider Component only seems to work properly if the range is a multiple of 10.
<TelerikSlider @bind-Value="@MyInteger"
Min="0"
Max="10"
SmallStep="1"
LargeStep="1">
</TelerikSlider>
works as expected. Same is true if Max is set to 20. But if Max is set to 7 or 9 or 11 it does not work. In those cases, clicking on the right arrow button does not do anything and after dragging the slider it magically moves back to 0. Clicking on a value only works every second time.
Regards,
René