0
我提供的buttons
多個Highcharts
,但我需要知道我點擊哪個button
...
Example
APIHighcharts渲染器按鈕ID
我提供的buttons
多個Highcharts
,但我需要知道我點擊哪個button
...
Example
APIHighcharts渲染器按鈕ID
內回調this
指點擊的按鈕。如果您使用attr()
方法,您也可以設置其ID。
var custombutton = charts[i].renderer.button('button', 450, 10, function() {
// not working
alert(this.element.id);
}, null, hoverState, pressedState).attr({
id: 'button-' + i
}).add();
這是一個很好的方式 – R3tep