Last active
October 29, 2018 00:28
-
-
Save haldarmahesh/00bde27b269326ab4020acb52d1a541b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
componentDidMount() { | |
this.chart = createAndSetupChartInDOM(this.props.chartsValue); | |
} | |
componentDidUpdate(prevProps) { | |
this.chart.destroy(prevProps.chartsValue); | |
this.chart = createAndSetupChartInDOM(this.props.chartsValue); | |
} | |
componentWillUnmount() { | |
this.chart.destroy(this.props.chartsValue); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment