I see a lot of D3 code that has something like this:
var x = d3.scale.ordinal()
.rangeRoundBands([0, width], .1);
As of D3 version 4.0 d3.scale.ordinal()
is now d3.scaleOrdinal
and rangeRoundBands
seems to be gone.
> d3.scaleOrdinal()
{
[Function: scale]
domain: [Function],
range: [Function],
unknown: [Function],
copy: [Function]
}
What would the D3 v4 equivalent of this code (from Mike Bostock's bar chart example) be?
var x = d3.scale.ordinal()
.rangeRoundBands([0, width], .1);
In D3 4.x rangeRoundBands
was moved to the new Band scale:
d3.scaleBand()
.range([range])
.round([round]);
That's equivalent to:
d3.scaleBand()
.rangeRound([range]);
Here is the API: https://github.com/d3/d3-scale#band-scales
var x = d3.scale.ordinal()
.rangeRoundBands([0, width], .1);
The above calculates bands and sets padding between band. In v4, the equivalent is
var x = d3.scaleBand()
.rangeRound([0, width])
.padding(0.1);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With