pdfObject

Configures the Kendo UI Scheduler PDF export settings.

Example

<div id="scheduler"></div>
<script>
$("#scheduler").kendoScheduler({
    date: new Date("2022/6/13"),
    startTime: new Date("2022/6/13 07:00 AM"),
    height: 600,
    views: ["day", "week"],
    timezone: "Etc/UTC",
    dataSource: [
        {
            id: 1,
            start: new Date("2022/6/13 10:00 AM"),
            end: new Date("2022/6/13 11:00 AM"),
            title: "Team Meeting"
        }
    ],
    pdf: {
        author: "John Doe",
        creator: "Scheduler App",
        date: new Date(),
        fileName: "Scheduler.pdf",
        forceProxy: true,
        keywords: "scheduler export",
        landscape: true,
        margin: {
            bottom: "1cm",
            left: "1cm",
            right: "1cm", 
            top: "1cm"
        },
        paperSize: "A4",
        subject: "Scheduler Export",
        title: "My Schedule"
    },
    toolbar: ["pdf"]
});
</script>
In this article
pdfRelated Properties
Not finding the help you need?
Contact Support