tickPlacementString(default: "both")
Denotes the location of the tick marks in the Slider. The available options are:
- topLeft - Tick marks are located on the top of the horizontal widget or on the left of the vertical widget.
- bottomRight - Tick marks are located on the bottom of the horizontal widget or on the right side of the vertical widget.
- both - Tick marks are located on both sides of the widget.
- none - Tick marks are not visible.
Example
<input id="slider" style="width: 300px" />
<script>
$("#slider").kendoSlider({
min: 0,
max: 100,
value: 40,
largeStep: 20,
smallStep: 5,
tickPlacement: "topLeft"
});
</script>
In this article