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

Issue exporting csv in highchart v4.1.7 #123

Closed rakshit1994 closed 7 years ago

rakshit1994 commented 7 years ago

Issue exporting csv in highchart v4.1.7, rest of the normal functions work fine, but export csv,xls, view data table don't work. Gives: Highcharts.inArray is not a function.

TorsteinHonsi commented 7 years ago

You can add this snippet to backport it:

Highcharts.inArray = function (item, arr) {
    return arr.indexOf ? arr.indexOf(item) : [].indexOf.call(arr, item);
};