score:2

Accepted answer

Use the label formatter for the pie attribute. You can access the exact data point with the this.y value:

 pie: 
        {
            allowPointSelect: true,
            cursor: 'pointer',
            dataLabels: 
            {
                enabled: true,
                color: '#000000',
                connectorColor: '#000000',
                formatter: function() 
                { 
                    return '<b>'+ this.point.name +'</b>: '+ this.y;
                }
            }
        }

Related Query

More Query from same tag