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: 'area'
},
plotOptions: {
series: {
stacking: 'normal',
marker: {
enabled: false
},
lineWidth: 0
}
},
series: [{
data: [1.3, 1, 1, 1.5]
},{
data: [1.3, 1.5, 1.9, 1]
},{
data: [1.2, 5.5, 7.5, 12]
},{
data: [1, 1.8, 1.9, 1.2]
},{
data: [1, 1.5, 1.2, 0.9]
},{
fillColor: 'rgba(255,255,255,0)',
data: [5, 4, 4, 3.5]
}]
});