JSFiddle - React, Tailwind, and code Playground
by ncapito
HTML
<script src="https://code.highcharts.com/highcharts.js"></script>
<script src="https://code.highcharts.com/modules/exporting.js"></script>
<div id="container" style="min-width: 310px; height: 400px; margin: 0 auto"></div>
JavaScript
$(function() {
$('#container').highcharts({
title: {
text: ''
},
xAxis: {
categories:["2016-02-04T17:00:00.000Z", "2016-02-04T18:00:00.000Z"]
},
yAxis: {
title: {
text: 'test'
}
},
series: [
{
"id": "1",
"name": "test1",
"timestamp": "2016-02-04T17:00:00.000Z",
"value": 1
}, {
"id": "2",
"name": "test2",
"timestamp": "2016-02-04T18:00:00.000Z",
"value": 2
}
]
});
});