我需要设置 plotOptions -> events -> legendItemClick 但在按钮单击时手动设置。
我虽然它会像 chart.plotOptions.events.legendItemClick = function() {...}; 但这显然不是解决方案。
我什至不确定这是否可能,我必须仅在图表创建时实现它。
对此的任何指导都非常感谢。谢谢。
通过创建在高图中设置:
plotOptions: {
series: {
events: {
legendItemClick: function() {
// Do something
}
}
}
}
我想做什么...(创建后)
var chart = $('#container').highcharts(); // Get the highcharts
// This doesn't work
chart.plotOptions.series.legendItemClick = function() { // Set the legendItemClick
// Do something
}