highcharts / export-csv

Highcharts plugin to export chart data to CSV
http://www.highcharts.com/plugin-registry/single/7/Export-CSV
MIT License
76 stars 95 forks source link

Calling viewData() method in the beforePrint event does not show data in print version #133

Open pranavnk opened 7 years ago

pranavnk commented 7 years ago

Hi,

First of all thank you for developing this very good plugin which shows highcharts data seamlessly, however I am trying to show data in only the printed version of the chart and so tried to call the .viewData() method in beforePrint event like so:

events: { beforePrint: function () { this.viewData(); }

But unfortunately this does not seem to work. It shows the data on the actual webpage but not in the print version. Can you help me solve this issue please..