Selection
The Rating allows to control the selection behavior of the items by configuring the Selection
property:
single - allows selecting a single item.
continuous - allows selecting all items from the start to the end.
Continuous Selection
This is the default selection behavior of the Rating. If not configured, the widget will automatically set the Selection
property to "continuous"
:
<kendo-rating name="rating" selection="continuous"></kendo-rating>
Single Selection
Single selection can be configured by setting the Selection
property to "single"
:
<kendo-rating name="rating" min="1" max="6" value="3" selection="single"></kendo-rating>