messages.plannedTasks.offsetTooltipDelayString(default: "Delay")

The text rendered in the Tooltip that would be displayed for tasks which have finished with delay 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: {
            offsetTooltipDelay: "Behind schedule"
        }
    }
});
</script>