Skip to content

Instantly share code, notes, and snippets.

@WilbertOnGithub
Created May 13, 2015 09:58
Show Gist options
  • Save WilbertOnGithub/1f3f531a86222e81b1e5 to your computer and use it in GitHub Desktop.
Save WilbertOnGithub/1f3f531a86222e81b1e5 to your computer and use it in GitHub Desktop.
Highcharts csv-export
Highcharts.getOptions().exporting.buttons.exportButton.menuItems.push({
text: 'Download CSV',
onclick: function () {
Highcharts.post('http://www.highcharts.com/studies/csv-export/csv.php', {
csv: this.getCSV()
});
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment