本文介绍了d3.js t.map不是一个函数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
希望有人可以帮助我,因为我找不到任何关于此错误的参考。
Hope somebody can help me out because I can't find any reference about this error.
我正在处理这段代码:
var xMin = d3.min(data, function(d) { return d.value; });
var xMax = d3.max(data, function(d) { return d.value; });
if (0 > xMin & 0 > xMax) {
xMax = 0;
}
if (0 < xMin & 0 < xMax) {
xMin = 0;
}
x.domain(xMin, xMax).nice();
y.domain(data.map(function(d) { return d.label; }));
但是我必须做一些错误,因为现在加载块在Web控制台:
but I must have made some mistake cause now the loading blocks with the error message below in the web console:
推荐答案
.domain()
以数组作为参数,即
x.domain(xMin, xMax).nice();
应为
x.domain([xMin, xMax]).nice();
这篇关于d3.js t.map不是一个函数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!