score:43

Accepted answer

You may want to look @ dataLabels.formatter. this.percentage option is available for pie

Also dataLabels.distance can be set to a negative value for dataLabels inside the pie.

Pie with percentage values inside @ jsFiddle

score:1

Try this code. It works for me:

  'labelFormatter':function () { 
       var total = 0, percentage; 
       $.each(this.series.data, function() { 
          total+=this.y; 
       }); 

       percentage=((this.y/total)*100).toFixed(1); 
       return this.name+' '+percentage+'%'; 
    }

score:8

Its suprisingly easy. In your tooltip or dataLabels section change your format.

FROM:
  format: '<b>{point.name}</b>: {point.y:.1f} Rs.',
TO:
  format: '<b>{point.name}</b>: {point.percentage:.1f} %',

Related Query

More Query from same tag