JSFiddle - React, Tailwind, and code Playground

HTML

<script src="http://code.highcharts.com/highcharts.js"></script>
<script src="http://code.highcharts.com/modules/exporting.js"></script>

<div id="container" style="min-width: 310px; height: 400px; max-width: 600px; margin: 0 auto"></div>

JavaScript

$(function () {
    $('#container').highcharts({
        chart: {
            type: 'spline',
            inverted: true
        },
        legend: {
            layout: 'vertical',
            align: 'right',
            verticalAlign: 'top',
            x: -150,
            y: 100,
            floating: true,
            borderWidth: 1
        },
        xAxis: {
            type: 'datetime',
            reversed: false,
			tickInterval: 24 * 3600 * 1000,
			labels: {
				enabled: true,
				format: '{value:%a}'
            }
        },
        yAxis: {

        },
        series: [{
			type: 'spline',
			color: '#bb2a9d',
			lineWidth: 2,
			pointInterval:  24 * 3600 * 1000,
			data: [
			   [ 1433297870000, 	85 ],
			   [ 1433211470000, 	22 ],
               [ 1433125070000, 	32 ],
               [ 1433038670000, 	54 ],
               [ 1432952270000, 	36 ],
               [ 1432865870000, 	76 ],
               [ 1432779470000, 	34 ],
               [ 1432693070000, 	85 ]
           ]
        }]
    });
});