Reputation: 1
Tried using:
Highchart/Export.JS: On implementing export/download as pdf/png in excel browser, opens chart in popup window but can not download.
Fusion Chart: No response in excel browser on click of print chart /Download PNG
FileSaver JS: Plugin works for charts created using but gives error on click of download link(like canvas.toBlob is undefined)
API to download Excel sheet: Server gives proper response but no file downloaded to Downloads folder
-->Currently using window.open() to download data by creating a blank page in HTML which will only execute the download functionality.But saving the chart as pdf/print is still NOT WORKING.
Upvotes: 0
Views: 565
Reputation: 33114
You best bet would be to use the Excel functions from Microsoft Graph API. This API supports fetching a chart image.
Upvotes: 0