JSFiddle - React, Tailwind, and code Playground

HTML

<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

$(function () {
    var chart;
    var getColor = {
        'AB': '#C6F9D2',
        'BC': '#CCCCB3',
        'CL': '#CECEFF', 
        'CI': '#FFCAFF', 
        'HB': '#D0CCCD', 
        'ON': '#FFCC99', 
        'PM': '#FFCBB9', 
        'SR': '#EAEC93', 
        'TS': '#D7FBE6', 
        'IS': '#FFCACA', 
        'FREE': '#00FF00'
    };
    $(document).ready(function() {
        chart = new Highcharts.Chart({
            chart: {
                renderTo: 'container',
                plotBackgroundColor: null,
                plotBorderWidth: null,
                plotShadow: false
            },
            tooltip: {
                pointFormat: '{series.name}: <b>{point.percentage}%</b>',
                percentageDecimals: 1
            },
            plotOptions: {
                pie: {
                    allowPointSelect: true,
                    cursor: 'pointer',
                    dataLabels: {
                        enabled: true,
                        color: '#000000',
                        connectorColor: '#000000',
                        formatter: function() {
                            return '<b>'+ this.point.name +'</b>: '+ this.percentage +' %';
                        }
                    }
                }
            },
            series: [{
                type: 'pie',
                name: 'Current selection',
                data: [
                    {
                        name: 'AB',
                        y: 45.0,
                        color: getColor['AB']
                    }, {
                        name: 'BC',
                        y: 26.8,
                        color: getColor['BC']
                    }, {
                        name: 'CL',
                        y: 12.8,
                        sliced: true,
                        selected: true,
                        color: getColor['CL']
                    }, {
                        name: 'CI',
                        y: 8.5,
            ...