highcharts 在最高股价图自定义标记上显示工具提示

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

我尝试创建的图表如下所示:

the working fiddle is as shown below 
         https://jsfiddle.net/n5k03rpu/5/

在悬停在自定义图标我得到默认日期有一种方法来添加自定义文本以外的日期在工具提示
请指出相同的样品

dgtucam1

dgtucam11#

您可以通过使用series.tooltip.pointFormatter来实现这一点。

示例代码:

tooltip: {
      headerFormat: '',
      pointFormatter: function() {
        return "Custom flag: " + this.title
      }
    },

演示:https://jsfiddle.net/BlackLabel/j1pz28y3/
API参考:

https://api.highcharts.com/highcharts/plotOptions.series.tooltip.pointFormatter

相关问题