Plot data values inside pie charts slice

highcharts, pie-chart, slice

Solution

You can use datalalabels - distance parameter : http://api.highcharts.com/highcharts#plotOptions.pie.dataLabels.distance

http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/pie-datalabels-distance/

  plotOptions: {
        pie: {
            dataLabels: {
                distance: -30,
                color: 'white'
            }
        }
    },

Problem

How to add a data values inside the slice in pie chart. Can any one help me in this? whether this is possible?

Original source

Related problems