JSFiddle - React, Tailwind, and code Playground

by Sundarapandiyan_pa

HTML

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

<div id="container"></div>

CSS

#container {
  min-width: 300px;
  max-width: 800px;
  height: 300px;
  margin: 1em auto;
}

JavaScript

const options = {
  chart: {
    renderTo: 'container',
    zoomType: 'xy'
  },
  title: {
    text: 'Average Monthly Weather Data for Tokyo'
  },
  subtitle: {
    text: 'Source: WorldClimate.com'
  },
  xAxis: [{
    categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun',
      'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'
    ]
  }],
  yAxis: [{ // Primary yAxis
    labels: {
      formatter: function() {
        return this.value + '°C';
      },
      style: {
        color: '#89A54E'
      }
    },
    title: {
      text: 'Temperature',
      style: {
        color: '#89A54E'
      }
    },
    min:0,
    max:32,
    opposite: true,
    showEmpty: false

  }, { // Secondary yAxis
    gridLineWidth: 0,
    title: {
      text: 'Rainfall',
      style: {
        color: '#4572A7'
      }
    },
    labels: {
      formatter: function() {
        return this.value + ' mm';
      },
      style: {
        color: '#4572A7'
      }
    },
    showEmpty: false

  }, { // Tertiary yAxis
    gridLineWidth: 0,
    title: {
      text: 'Sea-Level Pressure',
      style: {
        color: '#AA4643'
      }
    },
    labels: {
      formatter: function() {
        return this.value + ' mb';
      },
      style: {
        color: '#AA4643'
      }
    },
    opposite: true,
    showEmpty: false
  }],
  tooltip: {
    formatter: function() {
      var unit = {
        'Rainfall': 'mm',
        'Temperature': '°C',
        'Sea-Level Pressure': 'mb'
      }[this.series.name];

      return '' +
        this.x + ': ' + this.y + ' ' + unit;
    }
  },
  legend: {
    layout: 'vertical',
    align: 'left',
    x: 120,
    verticalAlign: 'top',
    y: 80,
    floating: true,
    backgroundColor: '#FFFFFF'
  },
  series: [{
    name: 'Rainfall',
    color: '#4572A7',
    type: 'column',
    yAxis: 1,
    data: [49.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4]
  }, {
    name: 'Sea-Level Pressure',
    type: 'spline',
    color: '#AA4643',
    yAxis: 2,
...