Created
May 13, 2015 09:58
-
-
Save WilbertOnGithub/1f3f531a86222e81b1e5 to your computer and use it in GitHub Desktop.
Highcharts csv-export
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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