我尝试创建的图表如下所示:
the working fiddle is as shown below https://jsfiddle.net/n5k03rpu/5/
在悬停在自定义图标我得到默认日期有一种方法来添加自定义文本以外的日期在工具提示请指出相同的样品
dgtucam11#
您可以通过使用series.tooltip.pointFormatter来实现这一点。
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
1条答案
按热度按时间dgtucam11#
您可以通过使用
series.tooltip.pointFormatter
来实现这一点。示例代码:
演示:https://jsfiddle.net/BlackLabel/j1pz28y3/
API参考:
https://api.highcharts.com/highcharts/plotOptions.series.tooltip.pointFormatter