increaseButtonTitleString
(default: "Increase")
The title of the increase button of the Slider.
Example
<input id="slider" style="width: 300px" />
<script>
$("#slider").kendoSlider({
increaseButtonTitle: "Increase Value",
showButtons: true,
min: 0,
max: 100,
value: 75
});
</script>
In this article