当我使用带有0%系列的3D运行图表时,数据标签浮动的位置不正确。
示例代码:
plotOptions: {
pie: {
allowPointSelect: true,
cursor: 'pointer',
depth: 35,
dataLabels: {
enabled: true,
format: '{point.name}'
}
}
},
series: [{
type: 'pie',
name: 'Browser share',
data: [
['Firefox', 45.0],
['IE', 55.0],
['Others', 0.0]
]
}]
});
});