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="pivotgrid"></div>
<script>
$("#pivotgrid").kendoPivotGrid({
pdf: {
landscape: true
},
height: 550,
dataSource: {
type: "xmla",
columns: [{ name: "[Date].[Calendar]", expand: true }, { name: "[Geography].[City]" } ],
rows: [{ name: "[Product].[Product]" }],
measures: ["[Measures].[Internet Sales Amount]"],
transport: {
connection: {
catalog: "Adventure Works DW 2008R2",
cube: "Adventure Works"
},
read: {
url: "https://demos.telerik.com/olap/msmdpump.dll",
dataType: "text",
contentType: "text/xml",
type: "POST"
}
},
schema: {
type: "xmla"
}
}
});
</script>