You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Then, I use the following code to export the table to an image:
document.getElementById("download-button").addEventListener("click",function(){consttable=document.getElementById("summary-table");html2canvas(table).then(function(canvas){// Convert the canvas to an image and save itconstimg=canvas.toDataURL("image/png");consta=document.createElement('a');a.href=img;a.download="summary-report.png";// Set the download file namea.click();});});