The best way to achieve this is to use the dataLabels formatting for the pie chart as follows:
plotOptions: {
pie: {
dataLabels: {
formatter: function(){
if (this.percentage < SOME_VALUE) return "";
return VALUE_TO_SHOW;
}
}
}
}
Replace SOME_VALUEand VALUE_TOSHOWat the desired values. But there will be problems if you use the connector for shortcuts (it is always visible).
source
share