Creating the Scale:
headers.forEach(function(d) {
// Coerce values to numbers.
jsonObj.forEach(function(p) {
y[d] = d3.scale.linear().domain(
d3.extent(jsonObj, function(p) {
return +p[d] || 0;
})).range([ h, 0 ]);
y[d].brush = d3.svg.brush().y(y[d]).on("brush", brush);
});
});
g.append("svg:g").attr("class", "axis").each(function(d) {
d3.select(this).call(axis.scale(y[d]));
Result:
WhatIwant:
Is it possible? How do I?