HighCharts -对绘图选项应用格式化函数

6vl6ewon  于 2022-11-10  发布在  Highcharts
关注(0)|答案(1)|浏览(175)

我是Highcharts的新手,也是编程的新手,我想知道是否可以在绘图选项上应用函数。例如,myFormatter是函数

tooltip: {
    headerFormat: '<b>{series.name}</b><br>',
    pointFormat: 'myFormatter({point.y})'
}

如果不可能,除了必须重新格式化整个数据集之外,是否还有其他建议?

dphi5xsq

dphi5xsq1#

这是不可能的,但您可以使用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

相关问题