DataTable Export - Webix.toExcel

Hi Webix Team,
Is there a way to export multiple blobUrls as a single excel file with multiple sheets?

Hello @Libinvarghese ,
All available customizations with export to Excel are described here.

// exporting all components with custom sheet names
webix.toExcel( 
    [$$("table"), $$("table2"), $$("table3")], 
    { filename: "My data", sheets:["Big data", "Small data", "data"]}
);

// exporting separate components with default sheet names
webix.toExcel(
    [$$("table"), $$("table2")], 
    { filename: "My data" }
);

Please take a look at the snippet:
https://snippet.webix.com/gle4bimj