我有一个 highcharts 表,其中包含两个使用命名值的数据系列。在我的一个系列的工具提示中,我想引用该系列中的一个数据点。所以这个答案中的解决方案:如何在同一图形的每条曲线中在 Highcharts 上使用不同的格式化程序?对我没有帮助。我需要的不仅仅是 tooltipText,我还需要一个格式化程序:
对于一个:
formatter: function() {
return this.x + ': ' + this.series.name +
'<br> $' + Highcharts.numberFormat(this.y, 0);
}
对于另一个:
formatter: function() {
return 'In ' + this.x + ' the median value was' + this.median +
'and the total $' + Highcharts.numberFormat(this.y, 0);
}