JSFiddle - React, Tailwind, and code Playground

by nunoarruda

HTML

<script src="https://code.highcharts.com/stock/highstock.js"></script>

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

JavaScript

const chart = Highcharts.stockChart('container', {
  xAxis: {
    minRange: 1000 * 60 * 60 * 24
  },
  rangeSelector: {
  	inputEditDateFormat: '%Y/%m/%d'
  },
  series: [
    {
      data: [
        [1579050000000, 1], // Jan 15 2020
        [1581728400000, 3], // Feb 15 2020
        [1584234000000, 5], // Mar 15 2020
        [1586908800000, 2], // Apr 15 2020
        [1589500800000, 4] // May 15 2020
      ]
    }
  ]
});