JSFiddle - React, Tailwind, and code Playground

HTML

<script src="http://github.highcharts.com/master/highstock.src.js"></script>

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

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

JavaScript

$(function() {

  Highcharts.setOptions({
    global: {
      useUTC: false
    }
  });

  var chart = window.chart = new Highcharts.StockChart({
    chart: {
      type: 'candlestick',
      renderTo: 'container',
      pinchType: 'x',
      panning: true,
      resetZoomButton: {
        theme: {
          display: 'none'
        }
      },

    },
    yAxis: {
      offset: 70,
      opposite: true,
    },
    mapNavigation: {
      enabled: true,
      enableButtons: true,
      enableTouchZoom: false,
      enableMouseWheelZoom: false,
      buttonOptions: {
        verticalAlign: 'bottom',
        theme: {
          stroke: '#fff'
        }

      },

    },
    rangeSelector: {

      inputEnabled: false,
      selected: 0,
      enabled: false
    },

    scrollbar: {
      enabled: false
    },
    navigator: {
      enabled: false,
    },

    series: [{
      name: 'Random data',
      data: [
        [1500046200000, 147.280, 147.363, 147.220, 147.300],
        [1500048000000, 147.303, 147.325, 147.229, 147.275],
        [1500049800000, 147.276, 147.333, 147.219, 147.230],
        [1500051600000, 147.227, 147.244, 147.130, 147.184],
        [1500053400000, 147.183, 147.192, 147.066, 147.182],
        [1500055200000, 147.177, 147.328, 147.177, 147.321],
        [1500057000000, 147.322, 147.327, 147.262, 147.272],
        [1500058800000, 147.270, 147.377, 147.270, 147.356],
        [1500060600000, 147.353, 147.541, 147.342, 147.474],
        [1500062400000, 147.480, 147.493, 147.370, 147.403],
        [1500064200000, 147.402, 147.495, 147.398, 147.407],
        [1500238800000, 147.292, 147.376, 147.286, 147.368],
        [1500240600000, 147.370, 147.381, 147.323, 147.370],
        [1500242400000, 147.368, 147.518, 147.368, 147.515],
        [1500244200000, 147.516, 147.545, 147.368, 147.529],
        [1500246000000, 147.528, 147.549, 147.397, 147.406],
        [1500247800000, 147.409, 147.417, 147.300, 147.325],
        [1500249600000, 147.327, 147.451,...