JSFiddle - React, Tailwind, and code Playground
by hfrntt
HTML
<script type="text/javascript" src="http://highcharts.com/js/testing.js"></script>
<div id="container" style="height: 300px"></div>
JavaScript
var chart = new Highcharts.Chart({
chart: {
renderTo: 'container',
type: 'pie'
},
plotOptions: {
pie: {
borderWidth: 2
}
},
series: [{
data: [29.9, {
y: 71.5,
borderColor: 'red'
}, {
y: 106.4,
borderColor: 'red'
}, 129.2, 144.0, 176.0]
}]
});