Skip to content

Instantly share code, notes, and snippets.

@haldarmahesh
Last active October 29, 2018 00:28
Show Gist options
  • Save haldarmahesh/00bde27b269326ab4020acb52d1a541b to your computer and use it in GitHub Desktop.
Save haldarmahesh/00bde27b269326ab4020acb52d1a541b to your computer and use it in GitHub Desktop.
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