messages.plannedTasks.offsetTooltipAdvancedString
(default: "Met deadline earlier")
The text rendered in the Tooltip that would be displayed for tasks which have finished in advance compared to their plannedEnd.
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: {
offsetTooltipAdvanced: "Completed ahead of schedule"
}
}
});
</script>
In this article