messages.plannedTasks.switchTextString
(default: "Planned Tasks")
The text that would be displayed on the switch allowing the user to turn on and off the PlannedTasks view in the Gantt Timeline.
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: {
switchText: "Show Planned Tasks"
}
}
});
</script>
In this article