How to use the dc.disableTransitions function in dc

To help you get started, we’ve selected a few dc examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github Graylog2 / graylog2-server / graylog2-web-interface / src / components / visualizations / HistogramVisualization.jsx View on Github external
componentDidMount() {
    this.disableTransitions = dc.disableTransitions;
    dc.disableTransitions = !this.props.interactive;
    this.renderHistogram();
    this._updateData(this.props.data);
  }
github Graylog2 / graylog2-server / graylog2-web-interface / src / components / visualizations / QuickValuesVisualization.jsx View on Github external
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);
  },
github Graylog2 / graylog2-server / graylog2-web-interface / src / components / visualizations / HistogramVisualization.jsx View on Github external
componentDidMount() {
    this.disableTransitions = dc.disableTransitions;
    dc.disableTransitions = !this.props.interactive;
    this.renderHistogram();
    this._updateData(this.props.data);
  }
github Graylog2 / graylog2-server / graylog2-web-interface / src / components / visualizations / GraphVisualization.jsx View on Github external
componentDidMount() {
    this.disableTransitions = dc.disableTransitions;
    dc.disableTransitions = !this.props.interactive;
    this.renderGraph();
    this._updateData(this.props.data, this.props.config, this.props.computationTimeRange);
  }

dc

A multi-dimensional charting library built to work natively with crossfilter and rendered using d3.js

Apache-2.0
Latest version published 3 years ago

Package Health Score

62 / 100
Full package analysis