JSFiddle - React, Tailwind, and code Playground
by Ravi A
HTML
<script src="https://code.highcharts.com/highcharts.js"></script>
<div id="container" style="height: 400px"></div>
JavaScript
Highcharts.chart('container', {
title: {
text: 'Chart with time'
},
xAxis: {
labels: {
formatter: function(){
return moment(new Date(this.value)).format('DD'); // example for moment.js date library
//return this.value;
}
}
},
series: [{
data: [
[2018-09-07, 100],
[2018-09-08, 120]
]
}]
});