sheets.rows.cells.italic Boolean (default: false)

Setting sheets.rows.cells.italic to true renders the cell content in italics.

Example - rendering the cell content in italics

<script>
var workbook = new kendo.ooxml.Workbook({
  sheets: [
      {
          rows: [
            { cells: [ { value: "Italic", italic: true } ] }
          ]
      }
  ]
});
kendo.saveAs({
  dataURI: workbook.toDataURL(),
  fileName: "Test.xlsx"
});
</script>
In this article