setOptions

Sets the options of the Rating dynamically. Use this method if you want to enable/disable a particular feature/option.

Example

<input id="rating" />

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

    ratingInstance.setOptions({ label: false });
</script>
In this article