d3.utcParse()

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

manyBody.distanceMax()

manyBody.distanceMax([distance]) If distance is specified, sets the maximum distance between nodes over which this force is considered. If distance is not specified, returns the current maximum distance, which defaults to infinity. Specifying a finite maximum distance improves performance and produces a more localized layout.

band.paddingOuter()

band.paddingOuter([padding]) If padding is specified, sets the outer padding to the specified value which must be in the range [0, 1]. If padding is not specified, returns the current outer padding which defaults to 0. The outer padding determines the ratio of the range that is reserved for blank space before the first band and after the last band.

d3.geoGilbert()

d3.geoGilbert([type]) Gilbert’s two-world perspective projection. Wraps an instance of the specified projection type; if not specified, defaults to d3.geoOrthographic.

radialLine.context()

radialLine.context([context]) Equivalent to line.context.

color.darker()

color.darker([k]) Returns a darker copy of this color. If k is specified, it controls how much darker the returned color should be. If k is not specified, it defaults to 1. The behavior of this method is dependent on the implementing color space.

map.set()

map.set(key, value) Sets the value for the specified key string. If the map previously had an entry for the same key string, the old entry is replaced with the new value. Returns the map, allowing chaining. For example: var map = d3.map() .set("foo", 1) .set("bar", 2) .set("baz", 3); map.get("foo"); // 1

d3.geoSatellite()

d3.geoSatellite() d3.geoSatelliteRaw(P, omega) The satellite (tilted perspective) projection.

d3.geoEquirectangularRaw

d3.geoEquirectangular() d3.geoEquirectangularRaw The equirectangular (plate carrée) projection.

d3.voronoi()

d3.voronoi() Creates a new Voronoi layout with default x- and y- accessors and a null extent.