pdf.landscape Boolean (default: false)

If set to true, reverses the paper dimensions in such a way that the width becomes the larger edge.

Example - enabling the landscape mode

<div id="propertyGrid"></div>
<script>
  $("#propertyGrid").kendoPropertyGrid({
    columns: {
        fieldColumn: { width: 200 },
        valueColumn: { width: 250 }
    },
    model: {
        foo: "bar",
        baz: 5
    },
    toolbar: ["pdf"],
    pdf: {
      landscape: true
    }
  });
</script>
In this article