project.invert()

project.invert(x, y) The inverse of project.

d3.schemeYlGn

d3.interpolateYlGn(t) d3.schemeYlGn Given a number t in the range [0,1], returns the corresponding color from the “YlGn” sequential color scheme represented as an RGB string.

d3.stackOrderNone()

d3.stackOrderNone(series) Returns the given series order [0, 1, … n - 1] where n is the number of elements in series. Thus, the stack order is given by the key accessor.

transform.invert()

transform.invert(point) Returns the inverse transformation of the specified point which is a two-element array of numbers [x, y]. The returned point is equal to [(x - tx) / k, (y - ty) / k].

d3.interpolateTransformSvg()

d3.interpolateTransformSvg(a, b) Returns an interpolator between the two 2D SVG transforms represented by a and b. Each transform is decomposed to a standard representation of translate, rotate, x-skew and scale; these component transformations are then interpolated. This behavior is standardized by CSS: see matrix decomposition for animation.

d3.utcMonday

d3.timeMonday d3.utcMonday Monday-based weeks (e.g., February 6, 2012 at 12:00 AM).

simulation.alphaMin()

simulation.alphaMin([min]) If min is specified, sets the minimum alpha to the specified number in the range [0,1] and returns this simulation. If min is not specified, returns the current minimum alpha value, which defaults to 0.001. The simulation’s internal timer stops when the current alpha is less than the minimum alpha. The default alpha decay rate of ~0.0228 corresponds to 300 iterations.

request.password()

request.password([value]) If value is specified, sets the password for authentication to the specified string and returns this request instance. If value is not specified, returns the current password, which defaults to null.

d3.timeParse()

d3.timeParse(specifier) An alias for locale.parse on the default locale.

satellite.distance()

satellite.distance([distance]) Distance from the center of the sphere to the point of view, as a proportion of the sphere’s radius; defaults to 2.0. The recommended maximum clip angle for a given distance is acos(1 / distance) converted to degrees. If tilt is also applied, then more conservative clipping may be necessary. For exact clipping, the in-development geographic projection pipeline is needed; see the satellite example.