precision String (default: "item")

Specifies the precision with which an item is selected. The available options are:

*item - rate by selecting the whole item. *half - rate by selecting half of the item or the whole item.

Example - item precision

<input id="rating" />

<script>
    $("#rating").kendoRating({
        min: 1,
        max: 6,
        precision: "item"
    });
</script>

Example - half precision

<input id="rating" />

<script>
    $("#rating").kendoRating({
        min: 1,
        max: 6,
        precision: "half"
    });
</script>
In this article