value Number (default: null)

Specifies the initial value of the Rating.

If a greater value than the max option is used, then the max value will be set.

If a value less than the min option is used, then the min value will be set.

Example

<input id="rating" />

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