我正在使用react-chartjs,现在我遇到的问题是我的图表在我的控制台中根本没有出现任何错误而呈现。
以前,当我安装react-chartjs和chartjs时,始终存在错误app.get('/calback', function (req, res) {
var transactionStream = gateway.transaction.search(function (search) {
search.customerId().is(req.params.cid);
}, function (err, response) {
var transactions = []
response.each(function (err, transaction) {
transactions.push(transaction)
if (transactions.length === response.ids.length) {
res.json({transactions: transactions});
}
})
})
})
。虽然我不确定这是否相关。
这是我的演示文稿组件:
Unmet peer dependency: eslint-plugin-jsx-a11y@3.0.2
这是我的import React, { PropTypes } from 'react';
import Chart from 'chart.js';
import { Line as LineChart } from 'react-chartjs';
const StatsGraph = (props) =>
<div>
<LineChart data={props.helpsPosted} redraw width="600" height="250" />
</div>;
StatsGraph.propTypes = {
helpsPosted: PropTypes.object.isRequired,
};
export default StatsGraph;
道具:
helpsPosted
任何帮助将不胜感激。谢谢!