New to Telerik UI for ASP.NET MVC? Start a free 30-day trial

Tooltip

Updated on Dec 10, 2025

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.

Razor
    @(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.

Razor
    @(Html.Kendo().Rating()
        .Name("rating")
        .Min(1)
        .Max(6)
        .Value(3)
        .Tooltip(false)
    )

See Also