JSFiddle - React, Tailwind, and code Playground

HTML

<div id="container" style="height: 400px; width: 450px"></div>
<script src="http://code.highcharts.com/master/highcharts.src.js"></script>
<script src="http://code.highcharts.com/master/modules/exporting.src.js"> </script>

JavaScript

var chart = new Highcharts.Chart({
    chart: {
        renderTo: 'container',
        defaultSeriesType: 'column'
    },
    xAxis: {
        categories: ['Jan and more', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
    },
    
    plotOptions: {
        series: {
            stacking: 'normal'
        }
    },    
    series: [{
        data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4]
    }, {
        data: [144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4, 29.9, 71.5, 106.4, 129.2]
    }]
});