You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 19, 2019. It is now read-only.
In my opinion, should be in Core.js/componentWillReceiveProps nextProps.redraw instead of this.props.redraw,
With nextProps.redraw you enable to choose how user want draw the chart in next update cycle (redraw:false with new metrics or redraw:true with new labels,..).
But with this.props.redraw you can affect only second update cycle, which is not so flexible and you can not redraw chart instantly when you need it.
Is there some point why it has to be this.props.redraw or can I create pull request?