Highcharts Demo
author(s): Torstein Hønsi
by kzoon
HTML
<script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
<script src="https://code.highcharts.com/highcharts.js"></script>
<div id="container" style="height: 400px"></div>
JavaScript
var chart = Highcharts.chart('container', {
"chart": {
"type": "pie",
},
"series": [{
"showInLegend": true,
"legendType": "point",
"data": [{
"name": "Americas",
"y": 53062
}, {
"name": "Australia",
"y": 41164
}, {
"name": "Europe",
"y": 63431
}, {
"name": "Asia",
"y": 14540
}]
}]
});