JSFiddle - React, Tailwind, and code Playground

HTML

<script type="text/javascript" src="http://code.highcharts.com/highcharts.js"></script>
<div id="container" style="height: 300px"></div>

JavaScript

$(function() {
    var chart = new Highcharts.Chart({
        chart: {
            renderTo: 'container'
        },
        yAxis:{
            min:1,
            labels: {
                formatter: function() {
                    if(this.isFirst)
                        return this.axis.dataMin;
                    return this.value;
                }
            }
        },
        series: [{
            data: [1,5,82,9,300,5,42,199,5,6,99,1,56,52,250,64]
        }]
    
    });
});