Hi Ivan,
We regret for the inconvenience.
On further validation on the reported issue, we would like to convey that you have used the bind-Value attribute with variable Limits.
public float[] Limits = { 0, 425 };
But the same variable has also been used for Min and Max property, this variable will be dynamically updated based on the selected values.
|
<SliderTicksData Placement="Placement.Before" LargeStep=@(425/5) />
<SliderTooltipData IsVisible="true" ShowOn="TooltipShowOn.Hover" />
</SfSlider> |
When using the same variable for the Min and Max value, then values will be changing continuously. For resolving the reported issue, we suggest you to set the Min and Max value in another variable else need to set the value directly.
Min="0" Max="425"
The below code will resolve the reported issue,
|
<SfSlider @ref="this.slider" @bind-Value="this.Limits" Type=SliderType.Range Min="0" Max="425">
<SliderTicksData Placement="Placement.Before" LargeStep=@(425/5) />
<SliderTooltipData IsVisible="true" ShowOn="TooltipShowOn.Hover" />
</SfSlider>
|
Refer to the sample.
Please get back to us if you need further assistance.
Regards,
Sharon Sanchez S.