Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

d3.js t.map is not a function

Hope somebody can help me out because I can't find any reference about this error.

I was working on this piece of code:

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; }));

but I must have made some mistake cause now the loading blocks with the error message below in the web console:

"TypeError: t.map is not a function @ http://d3js.org/d3.v3.min.js:2

like image 541
mirba Avatar asked Jun 13 '13 13:06

mirba


1 Answers

.domain() takes an array as argument, i.e.

x.domain(xMin, xMax).nice();

should be

x.domain([xMin, xMax]).nice();
like image 79
Lars Kotthoff Avatar answered Oct 05 '22 23:10

Lars Kotthoff