JSFiddle - React, Tailwind, and code Playground

HTML

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

<div id="container" style="height: 400px; min-width: 310px"></div>

JavaScript

$(function () {

    var enable = $('#container').width() > 480;
    
    $.getJSON('http://www.highcharts.com/samples/data/jsonp.php?filename=aapl-c.json&callback=?', function (data) {
        // Create the chart
        $('#container').highcharts('StockChart', {


            rangeSelector : {
                enabled: false
            },
            scrollbar :{
                enabled: false
            },
            navigator:{
                enabled: false
            },
            responesive: {
            	enabled: false
            },
            title : {
                text : 'AAPL Stock Price'
            },

            series : [{
            		type: 'column',
                name : 'AAPL',
                data : data,
                tooltip: {
                    valueDecimals: 2
                }
            }]
        });
    });

});