label Boolean|Object (default: true)

The Rating displays a label by default that shows the current value out of the max value 3 / 5. If the widget does not have a selected value, the label will not be displayed initially and will be toggled after an item is selected.

If label is set to false, the widget will not display the label.

Example - disable the label

<input id="rating" />

<script>
    $("#rating").kendoRating({
        label: false
    });
</script>
In this article