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
      }]
  }]
});
workbook.toDataURLAsync().then(function(dataURL) {
  kendo.saveAs({
    dataURI: dataURL,
    fileName: "Test.xlsx"
  });
});
</script>
In this article