We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
graph内部的事件监听会导致angular产生变更检查。
通过在注册事件上添加this._zone.runOutsideAngular,还是会触发变更检查
this._zone.runOutsideAngular
// 注册封装的echarts事件. private _registerEvent() { this._zone.runOutsideAngular(()=>{ this._eventArr.forEach(eventStr => { this._graph.off(eventStr); this._graph.on(eventStr, params => this._handleEvent(params, eventStr)); }) }) }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
graph内部的事件监听会导致angular产生变更检查。
通过在注册事件上添加
this._zone.runOutsideAngular
,还是会触发变更检查The text was updated successfully, but these errors were encountered: