How to add a data values inside the slice in pie chart. Can any one help me in this? whether this is possible?
Asked
Active
Viewed 2.1k times
12
-
This post might be helpful https://stackoverflow.com/questions/15235666/highcharts-pie-chart-add-text-inside-each-slice/29063822#29063822 – TechnoCrat Aug 09 '17 at 11:56
1 Answers
29
You can use datalalabels - distance parameter : http://api.highcharts.com/highcharts#plotOptions.pie.dataLabels.distance
plotOptions: {
pie: {
dataLabels: {
distance: -30,
color: 'white'
}
}
},

Sebastian Bochan
- 37,348
- 3
- 49
- 75