JSFiddle - React, Tailwind, and code Playground
by Bhesh Gurung
HTML
<script src="http://code.highcharts.com/2.2.4/highcharts.js"></script>
<div id="container" style="height: 300px; width: 500px"></div>
JavaScript
var chart = new Highcharts.Chart({
chart: {
renderTo: 'container'
},
xAxis: {
categories: ['sun', 'mon', 'tue', 'web', 'thu', 'fri', 'sat']
},
series: [
{
type: 'column',
data: [{low: 10, y: 20}, 50, 30, 80, 10, 40, 90]
} ]
});