d3.stratify()

d3.stratify() Constructs a new stratify operator with the default settings.

log.invert()

log.invert(value) See continuous.invert.

simulation.find()

simulation.find(x, y[, radius]) Returns the node closest to the position ⟨x,y⟩ with the given search radius. If radius is not specified, it defaults to infinity. If there is no node within the search area, returns undefined.

quantile()

quantile(value) Given a value in the input domain, returns the corresponding value in the output range.

d3.dsvFormat()

d3.dsvFormat(delimiter) <> Constructs a new DSV parser and formatter for the specified delimiter. The delimiter must be a single character (i.e., a single 16-bit code unit); so, ASCII delimiters are fine, but emoji delimiters are not.

d3.formatSpecifier()

d3.formatSpecifier(specifier) Parses the specified specifier, returning an object with exposed fields that correspond to the format specification mini-language and a toString method that reconstructs the specifier. For example, formatSpecifier("s") returns: { "fill": " ", "align": ">", "sign": "-", "symbol": "", "zero": false, "width": undefined, "comma": false, "precision": 6, "type": "s" } This method is useful for understanding how format specifiers are parsed and for

back.overshoot()

back.overshoot(s) Returns a new back easing with the specified overshoot s.

d3.geoAzimuthalEquidistantRaw

d3.geoAzimuthalEquidistant() d3.geoAzimuthalEquidistantRaw The azimuthal equidistant projection; see d3-geo.

band.align()

band.align([align]) If align is specified, sets the alignment to the specified value which must be in the range [0, 1]. If align is not specified, returns the current alignment which defaults to 0.5. The alignment determines how any leftover unused space in the range is distributed. A value of 0.5 indicates that the leftover space should be equally distributed before the first band and after the last band; i.e., the bands should be centered within the range. A value of 0 or 1 may be used to

symbolType.draw()

symbolType.draw(context, size) Renders this symbol type to the specified context with the specified size in square pixels. The context implements the CanvasPathMethods interface. (Note that this is a subset of the CanvasRenderingContext2D interface!)