sheets.titleString

Deprecated in versions 2015.3 and later. Use name instead.

Example

<script>
var workbook = new kendo.ooxml.Workbook({
  sheets: [
      {
          title: "Sales Report",
          rows: [
              { cells: [ { value: "Quarter" }, { value: "Sales" } ] },
              { cells: [ { value: "Q1" }, { value: 100000 } ] },
              { cells: [ { value: "Q2" }, { value: 120000 } ] }
          ]
      }
  ]
});

workbook.toDataURLAsync().then(function(dataURL) {
  kendo.saveAs({
    dataURI: dataURL,
    fileName: "sheet-title-example.xlsx"
  });
});
</script>
In this article
sheets.title
Not finding the help you need?
Contact Support