JSFiddle - React, Tailwind, and code Playground

HTML

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

<script src="http://code.highcharts.com/highcharts-more.js"></script>
<div id="container" style="width: 500px; height: 300px; border: solid 1px black"></div>
<input type="button" id="test" value="Test!">

JavaScript

$(function () {
    $('#container').highcharts({
        chart: {
            polar: true,
            margins: [0,0,0,0],
            spacingTop: 0,
            spacingBottom: 0,
            spacingLeft: 0,
            spacingRight: 0,
            plotBackgroundColor: '#CCFF66',
            type: 'column'
        },
        title: {
            text: ''
        },
        xAxis: {
            labels: {
              enabled: false
            },
            categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
        },
        pane: {
            size: '100%'
        },
        yAxis: {
            labels: {
              enabled: false
            },
            title: {
                text: ''
            },
            gridLineWidth: 0,
            endOnTick: true,
            min: 0,
            //max: 464
            max: 544
        },
        legend: {
            enabled: false
        },
        plotOptions: {
        },
        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: [129.9, 271.5, 306.4, 29.2, 376.0, 544.0, 435.6, 348.5, 216.4, 294.1, 35.6, 354.4]
            
            
        }]
    });
});