我正在使用单击事件来触发一个新页面,以从高图生成深入数据,但整个图表都在生成中



我需要从被点击的特定类别的图表中构建一个向下搜索表,我正在使用单击事件来触发一个新页面,以从高位图表生成向下搜索的表格数据,但整个图表数据都在生成中。如何从图表中获取被点击的特定元素的数据?我能够提取被点击的点的类别,但不能提取序列数据。我被认为是未定义的。

警报(this.options.name(未定义。

查看jsfiddle示例:https://jsfiddle.net/VM001/90jpvdw3/2/

point:{
events:{
click: function () {
location.href ="clickTable";
alert('Category:'+this.category+',values:'+this.y)
alert(this.options.name)
}
}
}
point:{
events:{
click: function () {
location.href ="clickTable";
alert('Category:'+this.category+',values:'+this.y)
alert(this.series.name)
}
}
}