pdfObject
Configures the Kendo UI Gantt PDF export settings.
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") }
],
toolbar: ["pdf"],
pdf: {
author: "John Doe",
title: "Project Schedule",
subject: "Gantt Chart Export",
keywords: "project, schedule, gantt"
}
});
</script>
In this article