d3.geoGraticule()

d3.geoGraticule() Constructs a feature generator for creating graticules: a uniform grid of meridians and parallels for showing projection distortion. The default graticule has meridians and parallels every 10° between ±80° latitude; for the polar regions, there are meridians every 90°.

collide.iterations()

collide.iterations([iterations]) If iterations is specified, sets the number of iterations per application to the specified number and returns this force. If iterations is not specified, returns the current iteration count which defaults to 1. Increasing the number of iterations greatly increases the rigidity of the constraint and avoids partial overlap of nodes, but also increases the runtime cost to evaluate the force.

identity.reflectY()

identity.reflectY([reflect]) If reflect is specified, sets whether or not the y-dimension is reflected (negated) in the output. If reflect is not specified, returns true if y-reflection is enabled, which defaults to false. This is especially useful for transforming from standard spatial reference systems, which treat positive y as pointing up, to display coordinate systems such as Canvas and SVG, which treat positive y as pointing down.

d3.geoEckert2Raw

d3.geoEckert2() d3.geoEckert2Raw The Eckert II projection.

d3.easeBackInOut()

d3.easeBack(t) d3.easeBackInOut(t) Symmetric anticipatory easing; scales backIn for t in [0, 0.5] and backOut for t in [0.5, 1].

simulation.on()

simulation.on(typenames, [listener]) If listener is specified, sets the event listener for the specified typenames and returns this simulation. If an event listener was already registered for the same type and name, the existing listener is removed before the new listener is added. If listener is null, removes the current event listeners for the specified typenames, if any. If listener is not specified, returns the first currently-assigned listener matching the specified typenames, if any. W

d3.selectorAll()

d3.selectorAll(selector) Given the specified selector, returns a function which returns all descendants of this element that match the specified selector. This method is used internally by selection.selectAll. For example, this: var div = selection.selectAll("div"); Is equivalent to: var div = selection.selectAll(d3.selectorAll("div"));

d3.utcDays()

d3.timeDays(start, stop[, step]) d3.utcDays(start, stop[, step]) Aliases for timeDay.range and utcDay.range.

d3.axisRight()

d3.axisRight(scale) Constructs a new right-oriented axis generator for the given scale, with empty tick arguments, a tick size of 6 and padding of 3. In this orientation, ticks are drawn to the right of the vertical domain path.

pow.copy()

pow.copy() See continuous.copy.