Skip to content

Instantly share code, notes, and snippets.

@haldarmahesh
Created October 19, 2018 07:44
Show Gist options
  • Save haldarmahesh/c39903d76a1f9e12e139929e856011be to your computer and use it in GitHub Desktop.
Save haldarmahesh/c39903d76a1f9e12e139929e856011be to your computer and use it in GitHub Desktop.
componentDidMount() {
if (this.props.modules) {
this.props.modules.forEach(function (module) {
module(Highcharts);
});
}
// Set container which the chart should render to.
this.chart = new Highcharts[this.props.type || "Chart"](
this.props.container,
this.props.options
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment