band.rangeRound([range])
Sets the scale’s range to the specified two-element array of numbers while also enabling rounding. This is a convenience method equivalent to:
band
.range(range)
.round(true);Rounding is sometimes useful for avoiding antialiasing artifacts, though also consider the shape-rendering “crispEdges” styles.
Please login to continue.