JSFiddle - React, Tailwind, and code Playground

HTML

<script src="http://highcharts.com/js/testing.js"></script>
<div id="container" style="height: 400px"></div>

JavaScript

var chart, options, theme;
options = {
chart: {
         renderTo: 'container',
         defaultSeriesType: 'column'
      },
      plotOptions: {
         area: {
            pointStart: 0,
            marker: {
                enabled: false
            }
         }
      },
    tooltip: {
        enabled: false
    },
      series: [{
         pointWidth: (Math.random()*250)|0,          
         name: 'Interval 1',
         data: [10]
      },{
         pointWidth: (Math.random()*250)|0,
         name: 'Interval 2',
         data: [14]
      }]
}
 
chart = new Highcharts.Chart(options);