messagesObject
The configuration of the Gantt messages. Use this option to customize or localize the Gantt messages.
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: {
actions: {
addChild: "Add Child Task",
append: "Add Task",
insertAfter: "Add Below",
insertBefore: "Add Above",
pdf: "Export to PDF"
},
editor: {
addNew: "Add new task",
name: "Title",
percentCompleteHint: "% complete"
}
}
});
</script>
In this article