Reputation: 307
How to add a data values inside the slice in pie chart. Can any one help me in this? whether this is possible?
Upvotes: 12
Views: 21526
Reputation: 37578
You can use datalalabels - distance parameter : http://api.highcharts.com/highcharts#plotOptions.pie.dataLabels.distance
plotOptions: {
pie: {
dataLabels: {
distance: -30,
color: 'white'
}
}
},
Upvotes: 29