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