sheets.rows.height Number

The row height (in pixels).

Example - setting the height of the rows

<script>
var workbook = new kendo.ooxml.Workbook({
  sheets: [{
      rows: [{
          cells: [{ value: "this row is 100px high" }],
          height: 100
      }, {
          cells: [{ value: "this row is 200px high" }],
          height: 200
      }]
  }]
});
kendo.saveAs({
  dataURI: workbook.toDataURL(),
  fileName: "Test.xlsx"
});
</script>
In this article