ElementStacks

by supertrue

HTML

<script src="http://highcharts.com/js/testing.js"></script>
<div id="container" style="height: 400px; width: 500"></div>

JavaScript

var chart = new Highcharts.Chart({
    chart: {
        renderTo: 'container',
        defaultSeriesType: 'pie'
    },
    
    plotOptions: {
        pie: {
            borderWidth: 1,
            shadow: false,
            allowPointSelect: true,
            slicedOffset: 20,

            
            dataLabels: {
                connectorWidth: 4
            }
        }
    },
    
    series: [{
        data: [
            ['Firefox',   44.2],
            ['IE7',       26.6],
            ['IE6',       20],
            ['Chrome',    3.1],
            ['Other',    5.4]
        ]
    }]
});