label.template String|Function

Parameters

value Number

The current value of the widget.

maxValue Number

The max value of the widget.

Specifies the template which is used for rendering the label.

Example - customize the label through the template option

<input id="rating" />

<script>
    $("#rating").kendoRating({
        label: { template: "<span>#=value# / #=maxValue# selected.</span>"  }
    });
</script>
In this article