我正在尝试使用highcharts创建一个饼图。对于图例,我想应用我的自定义管道来显示货币。但我无法做到这一点。
图表图例代码
legend: {
align: 'right',
verticalAlign: 'middle',
layout: 'vertical',
symbolWidth: 15,
symbolRadius: 7,
labelFormatter: this.formatCurrency,
useHTML: true
}
formatCurrency() {
return this.curPipe.transform(this['y'], "pipeFilter")
}
对于上述情况,我无法访问curPipe。
如果我将formatCurrency函数设置为箭头函数,我可以访问我的过滤器,但无法使用此对象访问图表系列数据。