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