rightDragHandleTitleString(default: "drag")
The title of the right drag handle of the RangeSlider.
Example
<div id="rangeslider" style="width: 200px;">
<input />
<input />
</div>
<script>
$("#rangeslider").kendoRangeSlider({
leftDragHandleTitle: "Minimum",
rightDragHandleTitle: "Maximum",
selectionStart: 10,
selectionEnd: 80
});
</script>