JSFiddle - React, Tailwind, and code Playground

by kzoon

HTML

<script src="http://code.highcharts.com/4.0.1/highcharts.js"></script>
<div id="container"></div>

JavaScript

jQuery(function () {
    jQuery('#container').highcharts({
        title : {
            text : 'Sliced pie'
        },    plotOptions: {
            pie: {
             
                slicedOffset: 30
            }
        },
        series : [{
            type : 'pie',
            data : [{
                y : 20,
                name : 'Sliced serie',
                sliced : true
            }, {
                y : 80,
                dataLabels: {
                    enabled: false
                }
            }]
        }]
    });
});