我正在构建一个高图表-3D v.4.1.4和点击不工作的图形- plotOptions.scatter.point.events.click。我使用IE8.0.7601.17514和jQuery 1.11.0。在铬和ie11中,图表工作得非常好。
作为例子,我以这为例
plotOptions: {
scatter: {
width: 10,
height: 10,
depth: 10,
point:{
events:{
click: function(event){
alert('hello');
}
}
}
}
},发布于 2015-04-06 08:06:54
我这样做了:
chart = new Highcharts.Chart({
chart: {
renderTo: 'first_graph',
type: 'scatter',
backgroundColor: '#fdfdfd',
height:800,
events:{
click: function(event){
if (this.hoverPoint!=null){
alert('Hi!');
}
}
}发布于 2015-04-02 10:43:50
这个问题与IE8/9中与单击事件有关的一般问题有关。
相关话题:https://github.com/highslide-software/highcharts.com/issues/4045
https://stackoverflow.com/questions/29405505
复制相似问题