d3区域插值不是函数

时间:2018-10-29 10:40:42

标签: javascript reactjs d3.js

我尝试在V4中使用d3.area.interpolate。 我的代码:

             d3.area()
            .x(function (d) {
                return this.xScale(d[_self.props.xData]);
            })
            .y0(this.h)
            .y1(function (d) {
                return this.yScale(d[_self.props.yData]);
            }).interpolate(this.props.interpolations)

我得到这个错误“ d3.area(...)。x(...)。y0(...)。y1(...)。interpolate不是函数”

我尝试将插值更改为曲线,但仍然无法正常工作。

0 个答案:

没有答案