Highcharts 3d 分散点击不起作用
Highcharts 3d scatter click does not work
我正在使用 Highcharts-3d v.4.1.4 构建图表,但点击不起作用 - plotOptions.scatter.point.events.click
。我使用 IE8.0.7601.17514 和 jQuery 1.11.0。图表在 chrome 和 ie11 中工作得很好。
我以this:
为例
plotOptions: {
scatter: {
width: 10,
height: 10,
depth: 10,
point:{
events:{
click: function(event){
alert('hello');
}
}
}
}
},
此问题与 IE8/9 中带有点击事件的一般问题有关。
相关主题:https://github.com/highslide-software/highcharts.com/issues/4045
我这样做了:
chart = new Highcharts.Chart({
chart: {
renderTo: 'first_graph',
type: 'scatter',
backgroundColor: '#fdfdfd',
height:800,
events:{
click: function(event){
if (this.hoverPoint!=null){
alert('Hi!');
}
}
}
我正在使用 Highcharts-3d v.4.1.4 构建图表,但点击不起作用 - plotOptions.scatter.point.events.click
。我使用 IE8.0.7601.17514 和 jQuery 1.11.0。图表在 chrome 和 ie11 中工作得很好。
我以this:
为例 plotOptions: {
scatter: {
width: 10,
height: 10,
depth: 10,
point:{
events:{
click: function(event){
alert('hello');
}
}
}
}
},
此问题与 IE8/9 中带有点击事件的一般问题有关。
相关主题:https://github.com/highslide-software/highcharts.com/issues/4045
我这样做了:
chart = new Highcharts.Chart({
chart: {
renderTo: 'first_graph',
type: 'scatter',
backgroundColor: '#fdfdfd',
height:800,
events:{
click: function(event){
if (this.hoverPoint!=null){
alert('Hi!');
}
}
}