JSFiddle - React, Tailwind, and code Playground

HTML

<script type="text/javascript" src="http://github.highcharts.com/dev-navigator/highstock.src.js"></script>

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

CSS

#container {
    -webkit-transform: translate3d(100px, 50px, 0) rotateZ(10deg);
}

JavaScript

$(function() {

    $.getJSON('http://www.highcharts.com/samples/data/jsonp.php?filename=aapl-c.json&callback=?', function(data) {
        // Create the chart
        window.chart = new Highcharts.StockChart({
            chart : {
                renderTo : 'container'
            },

            rangeSelector : {
                selected : 1
            },

            title : {
                text : 'AAPL Stock Price'
            },
            
            series : [{
                name : 'AAPL',
                data : data,
                tooltip: {
                    yDecimals: 2
                }
            }]
        });
    });

});