Tooltip
Each Rating item displays a tooltip that is enabled by default and contains text that is equal to the value of the item.
Getting Started
The following example demonstrates how to use the default tooltip of the Rating.
@(Html.Kendo().Rating()
.Name("rating")
.Min(1)
.Max(6)
.Value(3)
)
Disabling the Tooltips
Setting the Tooltip
property to false
prevents the items to display tooltips when hovered.
@(Html.Kendo().Rating()
.Name("rating")
.Min(1)
.Max(6)
.Value(3)
.Tooltip(false)
)