Highcharts Demo

author(s): Torstein Hønsi

by oysteinmoseng

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/export-data.js"></script>
<script src="https://code.highcharts.com/modules/accessibility.js"></script>

<div id="container"></div>

JavaScript

// Workaround start 

Highcharts.addEvent(Highcharts.Chart.prototype, 'afterA11yUpdate', function (e) {
	var a11y = e.accessibility;
    if (this.renderer.forExport && a11y && a11y.proxyProvider) {
    	a11y.proxyProvider.destroy();
    }
});


// ----------------------------------



Highcharts.chart('container', {

  series: [{
    data: [4, 3, 5, 6, 2, 3]
  }]

});