smallStepNumber(default: 1)
The small step value of the Slider. Must be a positive number, otherwise an Javascript exception will be thrown.
The small step value determines the amount of Slider value change when the end user
- clicks on the increase or decrease buttons of the Slider;
- presses the arrow keys (the drag handle must be focused);
- drags the drag handle.
Example
<input id="slider" style="width: 300px" />
<script>
$("#slider").kendoSlider({
min: 0,
max: 100,
smallStep: 0.5,
value: 25.5
});
</script>
In this article