JSFiddle - React, Tailwind, and code Playground

by core972

HTML

<script src="https://code.highcharts.com/highcharts.js"></script>
<div id="container" style="height: 400px"></div>

JavaScript

Highcharts.chart('container', {
		chart :{
    		type: "spline"
    },
    xAxis: {
    		type: 'datetime',
    },

    series: [{
        pointStart: Date.UTC(2021, 0, 1, 0, 0),
        pointInterval: 12 * 3600 * 1000,
        data: [55,23,45,60,78,56],
    }]
});