我正在highcharts-ng
应用中使用AngularJS
,并想知道是否可以过滤使用dataLabels formatter function
的数据?
我希望仅在{point.name}
时显示{point.value}
和{point.value}
。
我已尝试过以下功能(以及一些变体),但这似乎不起作用:
dataLabels: {
enabled: true,
formatter: function () {
if ('{point.value}') {
return '{point.name} {point.value}'
}
}
}
答案 0 :(得分:0)
解决方案非常简单。
我更改了我的代码如下:
dataLabels: {
formatter: function () {
if (this.point.value) {
return [this.point.name, this.point.value];
}
}
}
我在Highcharts论坛上回答了我的问题: