我正在使用 KendoUi 滑块。我正在使用以下设置:
jQuery(document).ready(function () {
jQuery("#slider").kendoSlider({
increaseButtonTitle: "Right",
decreaseButtonTitle: "Left",
showButtons: false,
min: 1,
max: 4,
smallStep: .2,
largeStep: 1,
value: <%= TotalScore %>,
tooltip:
{
enabled:false
}
});
我有四个大步骤,我想将每个步骤标记为“P”“O”“G”“I”来代替数字。我怎样才能做到这一点?