Pie legend

by kzoon

HTML

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

CSS

#container {
    width: 300px;
    width: 600px;
    margin: 0 auto;
}

JavaScript

$(function () {
    $('#container').highcharts({
        'chart': {
            type: 'pie'
        },

        plotOptions: {
            pie: {
                dataLabels: {
                    enabled: false
                },
                showInLegend: true
            }
        },
        series: [{
            data: [{
                'name': 'Americas',
                    'y': 52976,
                    'color': 'rgba(47,126,216,1)'
            }, {
                'name': 'Australia',
                    'y': 41219,
                    'color': 'rgba(13,35,58,1)'
            }, {
                'name': 'Europe',
                    'y': 62756,
                    'color': 'rgba(139,188,33,1)'
            }, {
                'name': 'Asia',
                    'y': 14577,
                    'color': 'rgba(145,0,0,1)'
            }]
        }]

    });
});