messages.plannedTasks.hoursString
(default: "hours")
The text for "hours" displayed in the Advanced/Delayed Tooltip (see above).
Example
<div id="gantt"></div>
<script>
$("#gantt").kendoGantt({
dataSource: [
{ id: 1, title: "Task 1", start: new Date("2023/1/1"), end: new Date("2023/1/5") }
],
messages: {
plannedTasks: {
hours: "hrs"
}
}
});
</script>
In this article