selectValueOnFocus Number (default: null)

If the option is set, the widget will automatically select the specified item when the Rating receives focus and no previous value has been set.

Example

<input id="rating" />

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