1

I'm trying to use reactd3 library in my project. And I get an error:

Uncaught TypeError: (0 , _reactD3Basic.series) is not a function

In the line (in the library code):

var chartSeriesData = (0, _reactD3Basic.series)(this.props);

Because _reactD3Basic doesn't contain attribute series. Can you help me? Why is it?

4

2 に答える 2

0

わかりました、私は問題を理解し、問題を提出しました:

https://github.com/react-d3/react-d3-brush/issues/6

基本的に、react-d3-brush は他のプロジェクトと比べて時代遅れです。まず、シリーズはもはや react-d3-basic にはありません。現在、react-d3-shape で動作しています。これが、シリーズが見つからない理由です。babel コンパイラの問題は、react-d3-brush で微調整する必要がある "export default" の処理に関連しており、他のライブラリは既に最新です。

解決策は、react-d3-brush をフォークして最新の状態にすることです。

于 2016-03-30T01:52:55.950 に答える