webix.toExcel Hanging

Hi Team,
I am trying to export to excel through webix, its working fine. But getting issue for Huge data. Its going to hang for huge data. Please let me know solution for support huge data.
Please find my code below for reference.

$('#exportPivot').click(function (e) {
 $preparingFileModal.modal('show');
 var today = new Date();
 var dd = today.getDate();
 var mm = today.getMonth() + 1;
 var yyyy = today.getFullYear();
webix.toExcel($$("pivot"),
{
filename : "Test_Tab_" + dd+ "" + mm + "" + yyyy
}).then(function() {
$preparingFileModal.modal('hide');
LoaderStopfunction();
});
});

Thank you.

Webix relies on SheetJS library for Excel export, and it does show issues with huge data sets during exporting.

Unfortunately, there’s no way to overcome this from our side.