我是Highcharts的新手,也是编程的新手,我想知道是否可以在绘图选项上应用函数。例如,myFormatter是函数
myFormatter
tooltip: { headerFormat: '<b>{series.name}</b><br>', pointFormat: 'myFormatter({point.y})' }
如果不可能,除了必须重新格式化整个数据集之外,是否还有其他建议?
dphi5xsq1#
这是不可能的,但您可以使用formatter来达到相同的结果:
formatter
tooltip: { formatter: function() { return `<b>${this.series.name}</b><br>` + myFormatter(this.point.y) } }
现场演示:http://jsfiddle.net/BlackLabel/ce1829oa/API引用:https://api.highcharts.com/highcharts/tooltip.formatter
1条答案
按热度按时间dphi5xsq1#
这是不可能的,但您可以使用
formatter
来达到相同的结果:现场演示:http://jsfiddle.net/BlackLabel/ce1829oa/
API引用:https://api.highcharts.com/highcharts/tooltip.formatter