JSFiddle - React, Tailwind, and code Playground

by epoch

HTML

<script src="http://code.highcharts.com/adapters/prototype-adapter.js"></script>
<script src="http://code.highcharts.com/highcharts.js"></script>
<script src="http://code.highcharts.com/modules/exporting.js"></script>
<div id="container" style="min-width: 400px; height: 400px; margin: 0 auto"></div>

JavaScript

chart = new Highcharts.Chart({
    chart: {
        renderTo: "container"
    },
    series: [{
        data: [{
            y: 8.0,
            name: "Monthly Office Float"},
        {
           y: 1.0,
            name: "External Audits"},
        {
            y: 1.0,
            name: "Compliance Weeks"}
                    ],
        name: "Petty Cash Categories",
        type: "pie"}
             ]
});