如何获取 Highcharts 热图点击事件的 xAxis 和 yAxis 信息?
How to get xAxis and yAxis information on a Highcharts heatmap click event?
在 Highcharts 热图中,我通常定义一个点击事件:
options.plotOptions = {
series: {
cursor: 'pointer',
point: {
events: {
click: function() {
/* action */
}
}
}
}
};
如何获取此函数中的 xAxis 和 yAxis 信息?
例如,在this演示中,当我点击左上角的0.67时,我想提醒"Friday, Alexander"。
我可以给这个函数传递参数吗?或者还有其他方法吗?
谢谢! :)
该事件附加了分数。所以,你可以这样做:
click: function (event) {
var str = event.point.series.yAxis.categories[event.point.y] + ',' +
event.point.series.xAxis.categories[event.point.x]
alert(str);
}
在 Highcharts 热图中,我通常定义一个点击事件:
options.plotOptions = {
series: {
cursor: 'pointer',
point: {
events: {
click: function() {
/* action */
}
}
}
}
};
如何获取此函数中的 xAxis 和 yAxis 信息?
例如,在this演示中,当我点击左上角的0.67时,我想提醒"Friday, Alexander"。
我可以给这个函数传递参数吗?或者还有其他方法吗?
谢谢! :)
该事件附加了分数。所以,你可以这样做:
click: function (event) {
var str = event.point.series.yAxis.categories[event.point.y] + ',' +
event.point.series.xAxis.categories[event.point.x]
alert(str);
}