sheets.rows.cellsArray

The cells for this row.

Example

<div id="spreadsheet"></div>
<script>
  $("#spreadsheet").kendoSpreadsheet({
    sheets: [{
      rows: [{
        cells: [
          { value: "Product", fontFamily: "Arial", fontSize: "14px" },
          { value: "Price", textAlign: "center" },
          { value: "Quantity", color: "#ff0000" }
        ]
      }]
    }]
  });
</script>