我查看了所有地方,我尝试了几种解决方案但是我无法在angular-nvd3 lineWithFocusChart中找到与brushend
类似的内容。
事实上,我试图获取渲染画笔范围的细节。
我试过了
callback : function(chart) {
chart.focus.dispatch.on('brush', function(e) {
console.log("hello", e)
});
}
但是它会呈现所有细节,而不是最后一个,当我使用' brushend'我收到一条错误消息,如果调度未定义d3.js:492 Uncaught TypeError: Cannot read property 'on' of undefined
。
你能帮帮我吗(