Displaying percentage inside pie item for highcharts

highcharts, javascript

Solution

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

Problem

I am trying to figure out if it is possible to display the percentage for each pie item inside the actual pie item for highcharts? Example of what I mean is something like this: https://developers.google.com/chart/interactive/docs/gallery/piechart

Original source