tooltip Boolean (default: true)

The Rating displays the value of the item through the title attribute when it is hovered.

If tooltip is set to false, the widget will not display the value of the items when hovering over them.

The tooltips are not visible when the Rating is disabled.

Example

Open In Dojo
<input id="rating" />

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