Highcharts test tool
by Torstein Hønsi
HTML
<script src="https://code.highcharts.com/highcharts.js"></script>
<script src="https://code.highcharts.com/modules/exporting.js"></script>
<script src="https://code.highcharts.com/modules/offline-exporting.js"></script>
<div id="container"></div>
<button id="download">
Download
</button>
CSS
#container {
min-width: 300px;
max-width: 800px;
height: 300px;
margin: 1em auto;
}
JavaScript
const chart = Highcharts.chart('container', {
xAxis: {
categories: ['Apples', 'Pears', 'Bananas', 'Oranges']
},
series: [{
data: [1, 4, 3, 5],
type: 'column'
}]
});
document.getElementById('download').addEventListener('click', e => {
Highcharts.downloadSVGLocal(chart.getSVG(), Highcharts.getOptions().exporting);
})