如何在不更改其内容的情况下创建指向基于 highcharts 工具提示中数据 xAxis 的地址的电子邮件链接?
tooltip: {
useHTML: true,
formatter: function() {
return ("<a href='mailto:example@me.com'><span class='xAxis'>" + this.y + "</span></a>");
}
}
如何在不更改其内容的情况下创建指向基于 highcharts 工具提示中数据 xAxis 的地址的电子邮件链接?
tooltip: {
useHTML: true,
formatter: function() {
return ("<a href='mailto:example@me.com'><span class='xAxis'>" + this.y + "</span></a>");
}
}
唯一的解决方案是创建自己的定位器,因此工具提示将始终位于光标下: http: //api.highcharts.com/highcharts#tooltip.positioner。当然,这仍然不是完美的解决方案,但应该允许单击工具提示的一部分(只是使其更适合您的情况)。