messages.plannedTasks.secondsString
(default: "seconds")
The text for "seconds" 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: {
seconds: "sec"
}
}
});
</script>
In this article