JSFiddle - React, Tailwind, and code Playground

by Ravi A

HTML

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

<div id="container" style="height: 400px"></div>

JavaScript

Highcharts.chart('container', {
  title: {
    text: 'Chart with time'
  },
  labels: {
        format: '${value:,.0f}'
      },
      xAxis: {
       
        type: 'datetime',
        labels:{
           step: this.StepCount // displays every second category
         },
        dateTimeLabelFormats: {
            day: '%e of %b'
        },
        crosshair: true,
        title: false
      },
  series: [{
    data: [
      [1493326164493, 100],
      [1493326194018, 120]
    ]
  }]
});