stackedLayoutSettingsObject

The stacked layout settings of the Grid.

Example - configure stacked layout settings

<div id="grid"></div>
<script>
$("#grid").kendoGrid({
  columns: [
    { field: "name" },
    { field: "age" },
    { field: "city" }
  ],
  dataSource: [
    { name: "Jane Doe", age: 30, city: "New York" },
    { name: "John Doe", age: 33, city: "Boston" }
  ],
  dataLayoutMode: "stacked",
  stackedLayoutSettings: {
    cols: 2
  },
  height: 550
});
</script>