4

我试图在数据更改时美化作为 React 组件编写的 C3 图表的更新。数据通过其 props 从父组件流向组件。

我现在拥有的解决方案“有效”但似乎不是最佳的:当新数据进入时,整个图表都会重新生成。我想过渡到新状态(线条移动而不是整个图表在闪烁中更新)。C3 API 似乎有很多方法,但我找不到如何到达图表。

var React = require("react");
var c3 = require("c3");

var ChartDailyRev = React.createClass({
    _renderChart: function (data) {
        var chart = c3.generate({
            bindto: '#chart1',
            data: {
              json: data,
              keys: {
                  x: 'date',
                  value: ['requests', 'revenue']
              },
              type: 'spline',
              types: { 'revenue': 'bar' },
              axes: {
                'requests': 'y',
                'revenue': 'y2'
              }
            },
            axis: {
                x: { type: 'timeseries' },
                y2: { show: true }
            }
        });
    },
    componentDidMount: function () {
        this._renderChart(this.props.data);
    },
    render: function () {
        this._renderChart(this.props.data);
        return (
            <div className="row" id="chart1"></div>
        )
    }
});

module.exports = ChartDailyRev;
4

1 回答 1

11

根据项目的文档

通过使用 API,您可以在图表呈现后更新图表。... API 可以通过从generate().

因此,您需要做的第一件事是在生成图表时保存对图表的引用。将其直接附加到组件很容易:

var ChartDailyRev = React.createClass({
    _renderChart: function (data) {
        // save reference to our chart to the instance
        this.chart = c3.generate({
            bindto: '#chart1',
            // ...
        });
    },

    componentDidMount: function () {
        this._renderChart(this.props.data);
    },

    // ...
});

然后,您想在道具更新时更新图表;React 提供了一个生命周期钩子componentWillReceiveProps,它在 props 发生变化时运行。

var ChartDailyRev = React.createClass({
    // ...

    componentWillReceiveProps: function (newProps) {
        this.chart.load({
            json: newProps.data
        }); // or whatever API you need
    }
});

(确保this._renderChart从您的render功能中删除。)

于 2015-05-04T04:36:48.070 回答