How can I define the format for Drilldown Pie Charts in Highcharts similar to the way we do it using series.dataLabels.format
for normal pie charts?
This is code the way I have done it for a normal pie chart. Once I drilldown, I want to it be in some other format than {point.name}({point.count}): {point.y:.1f}%
.
series: {
dataLabels: {
enabled: true,
format: '{point.name}({point.count}): {point.y:.1f}% ',
inside: true,
position: {
x: 10,
y: -100
}
}
}