我一直在尝试更改由按钮操作触发的 Highcharts 图表类型。
IE
customButton: {
text: 'Graph Type',
menuItems: [{
text: 'Line',
onclick: function() {
chartType.chart.type = 'spline';
$('#container').highcharts(chartType);
}
},
{
text: 'Column',
onclick: function() {
chartType.chart.type = 'column';
$('#container').highcharts(chartType);
}
},
{
text: 'Scatter',
onclick: function() {
chartType.chart.type = 'scatter';
$('#container').highcharts(chartType);
}
}]
}
更改图表就像一种魅力,但一旦我这样做,它就会破坏放大功能。我收到“未捕获的类型错误:无法为 mouseleave 事件调用未定义的方法“inClass”。
任何想法我做错了什么?