Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
componentDidMount() {
this.disableTransitions = dc.disableTransitions;
dc.disableTransitions = !this.props.interactive;
this.renderHistogram();
this._updateData(this.props.data);
}
componentWillUnmount() {
dc.disableTransitions = this.disableTransitions;
}
componentDidMount() {
this.disableTransitions = dc.disableTransitions;
dc.disableTransitions = !this.props.interactive;
this._resizeVisualization(this.props.width, this.props.height, this._getConfig('show_data_table'));
this._formatProps(this.props);
this._renderDataTable(this.props);
this._renderPieChart(this.props);
},
componentDidMount() {
this.disableTransitions = dc.disableTransitions;
dc.disableTransitions = !this.props.interactive;
this.renderHistogram();
this._updateData(this.props.data);
}
componentWillUnmount() {
dc.disableTransitions = this.disableTransitions;
},
componentDidMount() {
this.disableTransitions = dc.disableTransitions;
dc.disableTransitions = !this.props.interactive;
this.renderGraph();
this._updateData(this.props.data, this.props.config, this.props.computationTimeRange);
}