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: 500px; max-width: 600px; margin: 0 auto"></div>
<p style="font-family:'Arial'">There are more than 250 live music venues in Austin. This graph depicts the percentage of all live music venues, regardless of music genre and venue type, in each city by music district, based on data from AustinTexas.org.</p>

JavaScript

$(function () {

    $(document).ready(function () {

        // Build the chart
        $('#container').highcharts({
            chart: {
                plotBackgroundColor: null,
                plotBorderWidth: null,
                plotShadow: false
            },
            title: {
                text: 'Music Venues In Austin By District'
            },
            tooltip: {
                pointFormat: '{series.name}: <b>{point.percentage:.1f}%</b>'
            },
            plotOptions: {
                pie: {
                    allowPointSelect: true,
                    cursor: 'pointer',
                    dataLabels: {
                        enabled: false
                    },
                    showInLegend: true
                }
            },
            series: [{
                type: 'pie',
                name: 'Music Venues',
                data: [
                    ['Red River',   10.0],
                    ['6th Street',       17.0],
                    {
                        name: 'South Austin',
                        y: 16.0,
                        sliced: true,
                        selected: true
                    },
                    ['East Austin',    11.0],
                    ['Market District',     4.0],
                    ['University of Texas', 7.0],
                    ['Warehouse & Downtown',   13.0]
                    
                    
                ]
            }]
        });
    });
});