JSFiddle - React, Tailwind, and code Playground

by pyccki

HTML

<script type="text/javascript" src="http://highcharts.com/js/testing.js"></script>

<div id="container" style="width:500px;height: 300px"></div>

JavaScript

var chart = new Highcharts.Chart({

    chart: {
        renderTo: 'container',
        defaultSeriesType: 'column'    
    },    

    xAxis: {
        categories: ['Category']
    },

    series: [
        {"name":"Billing","data":[51.0]},{"name":"ChargeMaster3","data":[4.0]},{"name":"Coding","data":[8.0],"selected":0},{"name":"Human Resources","data":[9.0]}
    ]

});