I have pie chart. I'm using angular2-highcharts
library
title : { text : 'simple chart' },
series: [{
data: [29.9, 71.5, 106.4, 129],
}],
chart: {
type: 'pie'
}
On hover it displays values.
But I want them to be displayed inside that piece. like this
How can I achieve this?