使用 React 更新道具变化的 C3 图表
Updating C3 charts on props change with React
我正在尝试美化作为 React 组件编写的 C3 图表在其数据更改时的更新。数据通过其 props 从父组件流向组件。
我现在的解决方案 "works" 但似乎不是最优的:当新数据进来时,整个图表都会重新生成。我想过渡到新状态(线条移动而不是整个图表闪烁更新)。 C3API好像有很多方法,但是我找不到怎么上图
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;
根据the project's documentation:
By using APIs, you can update the chart after it's been rendered. ... APIs can be called through the object returned from 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
}
});
(确保从 render
函数中删除 this._renderChart
。)
我正在尝试美化作为 React 组件编写的 C3 图表在其数据更改时的更新。数据通过其 props 从父组件流向组件。
我现在的解决方案 "works" 但似乎不是最优的:当新数据进来时,整个图表都会重新生成。我想过渡到新状态(线条移动而不是整个图表闪烁更新)。 C3API好像有很多方法,但是我找不到怎么上图
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;
根据the project's documentation:
By using APIs, you can update the chart after it's been rendered. ... APIs can be called through the object returned from
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
}
});
(确保从 render
函数中删除 this._renderChart
。)