答案 0 :(得分:2)
当然,只需使用dataLabels.formatter
:
formatter: function() {
if(this.point.value == 0) {
return '';
} else {
return this.point.value;
}
}