Posts by Quinta • 11 points
2 posts
-
1
votes1
answer74
viewsA: How to put only the minimum and maximum on the D3 Scale scale?
I managed using Axis.ticks(2);
-
0
votes1
answer74
viewsQ: How to put only the minimum and maximum on the D3 Scale scale?
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;…