creator String (default: "Kendo UI")

The creator of the workbook.

Example - setting the creator

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