JSFiddle - React, Tailwind, and code Playground

by Dongor7

HTML

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

JavaScript

const options = {
	chart: {
    type: 'column'
  },
	title: {
    text: null,
  },
}

Highcharts.chart('container', options)