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.
<input id="rating" name="rating">
<script>
$(document).ready(function() {
$("#rating").kendoRating({
min: 1,
max: 6
});
});
</script>
Disabling Tooltips
Setting the tooltip
option to false
prevents the items to display tooltips when hovered.
<input id="rating" name="rating">
<script>
$(document).ready(function() {
$("#rating").kendoRating({
min: 1,
max: 6,
value: 3,
tooltip: false
});
});
</script>