reset

Resets the value of the widget to null and removes selection.

Example

<input id="rating" />

<script>
    var ratingInstance = $("#rating").kendoRating({
        min: 1,
        max: 6,
        value: 3
    }).data("kendoRating");

    ratingInstance.reset();
</script>
In this article