Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在 ExtJS 5(Pie 系列)的极坐标图上收听“itemclick”事件。
所以我会在我的控制器中的“init”函数中监听它,并使用“control”方法来添加监听器。但是当我尝试单击图表时,没有任何附加内容......我也尝试使用“addListener”或“on”添加它
之前在 ExtJS 4 中,我们不得不在系列上收听这个事件,我试过了,但不是更好......
有人有解决办法吗?
这里是极坐标图的 extJS 5 文档。
你应该能够在图表本身上设置监听器,而不是系列......
Ext.define('MyApp.view.myPolarChart', { .... listeners: { itemclick: function(series, item, event, eOpts){ } } ....