JSFiddle - React, Tailwind, and code Playground

by navindian

HTML

<script src="http://code.highcharts.com/stock/1.2.4/highstock.js"></script>
<div id="container" style="height: 500px; min-width: 500px"></div>

JavaScript

$(function() {
      window.chart = new Highcharts.StockChart({
         chart: {
            renderTo: 'container',
            zoomType : 'xy'
        },      
      })
)}