Pie point dataLabels

HTML

<script src="http://code.highcharts.com/master/highcharts.js"></script>
<div id="container" style="height: 300px"></div>

JavaScript

$(function() {
    var chart = new Highcharts.Chart({

        chart: {
            renderTo: 'container',
            type: 'pie',
            marginRight: 50
        },
        plotOptions:{
            series: {
                dataLabels: {
                    enabled: true,
                    color: 'green',
                    distance: -30
                }
            }
        },

        
            data: [
                ['aaaa', 29.9],
                ['bbbb', 71.5],
            {
                name: 'cccc',
                y: 54.4,
                dataLabels: {
                    enabled:true,
                    color:'red',
                    distance: 50
                }
                }]
        }]
    });
});