JSFiddle - React, Tailwind, and code Playground

HTML

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

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

JavaScript

var chart = new Highcharts.Chart({

    chart: {
        renderTo: 'container',
        type: 'pie'
    },
    tooltip: {
        formatter: function() {
            return '<a href="http://google.com/search?q='+this.y+'">'+this.y+'</a>'
        }
    },
    series: [{
        data: [29.9, 71.5, 106.4, 129.2]
    }]

});