JSFiddle - React, Tailwind, and code Playground

by nathanlogan

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: 310px; height: 300px; max-width: 600px; margin: 0 auto"></div>

JavaScript

$(function () {
    var chart;
    
    $(document).ready(function () {
    	
    	// Build the chart
        $('#container').highcharts({
            chart: {
                plotBackgroundColor: null,
                plotBorderWidth: null,
                plotShadow: false
            },
            title: {
                text: 'Browser market shares at a specific website, 2014'
            },
            tooltip: {
        	    pointFormat: '{series.name}: <b>{point.percentage:.1f}%</b>'
            },
            plotOptions: {
                pie: {
                    allowPointSelect: true,
                    cursor: 'pointer',
                    dataLabels: {
                        enabled: false
                    },
                    showInLegend: true
                }
            },
            legend:{
                align: 'left',
                layout: 'vertical',
                width: 100,
                maxHeight: 200
            },
            series: [{
                type: 'pie',
                name: 'Browser share',
                data: [
                    ['Firefox',   45.0],
                    ['IE',       26.8],
                    {
                        name: 'Chrome',
                        y: 12.8
                    },
                    ['Safari is a longer name',    8.5],
                    ['Opera',     6.2],
                    ['Others',   0.7],
                    ['Safari',    8.5],
                    ['Opera',     6.2],
                    ['Others',   0.7],
                    ['Safari',    8.5],
                    ['Opera',     6.2],
                    ['Others',   0.7],
                    ['Safari',    8.5],
                    ['Opera',     6.2],
                    ['Others',   0.7],
                    ['Safari',    8.5],
                    ['Opera',     6.2],
                    ['Others',   0.7]
                ]
            }]
        });
    });
    
});