JSFiddle - React, Tailwind, and code Playground
by hfrntt
HTML
<script src="http://highcharts.com/js/testing-exporting.js"></script>
<div id="test"></div>
JavaScript
$(function() {
var chart = new Highcharts.Chart({
chart: {
renderTo: 'test',
defaultSeriesType: 'pie',
animation: false
},
plotOptions: {
pie: {
size: 80
}
},
series: [{
data: [
['Firefox', 44.2],
['IE7', 26.6],
['IE6', 20],
['Chrome', 3.1],
['Other', 5.4]
]
}]
});
});