New to Telerik UI for ASP.NET Core? Download free 30-day trial

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)
    )
    <kendo-rating name="rating" min="1" max="6" value="3"></kendo-rating>

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)
    )
    <kendo-rating name="rating" min="1" max="6" value="3" tooltip="false"></kendo-rating>

See Also

In this article