pdf.landscape Boolean
(default: false)
Set to true
to reverse the paper dimensions if needed such that width is the larger edge.
Example - enable landscape mode
<div id="scheduler"></div>
<script>
$("#scheduler").kendoScheduler({
toolbar: ["pdf"],
pdf: {
landscape: true
},
date: new Date("2013/6/6"),
dataSource: [
{
id: 1,
start: new Date("2013/6/6 08:00 AM"),
end: new Date("2013/6/6 09:00 AM"),
title: "Interview"
}
]
});
</script>