d3.easeCubicOut()

d3.easeCubicOut(t) Reverse cubic easing; equivalent to 1 - cubicIn(1 - t). Also equivalent to polyOut.exponent(3).

ordinal.range()

ordinal.range([range]) If range is specified, sets the range of the ordinal scale to the specified array of values. The first element in the domain will be mapped to the first element in range, the second domain value to the second range value, and so on. If there are fewer elements in the range than in the domain, the scale will reuse values from the start of the range. If range is not specified, this method returns the current range.

treemap.paddingRight()

treemap.paddingRight([padding]) If padding is specified, sets the right padding to the specified number or function and returns this treemap layout. If padding is not specified, returns the current right padding function, which defaults to the constant zero. If padding is a function, it is invoked for each node with children, being passed the current node. The right padding is used to separate the right edge of a node from its children.

transform.scale()

transform.scale(k) Returns a transform whose scale k₁ is equal to k₀ × k, where k₀ is this transform’s scale.

d3.utcMinutes()

d3.timeMinutes(start, stop[, step]) d3.utcMinutes(start, stop[, step]) Aliases for timeMinute.range and utcMinute.range.

d3.geoOrthographicRaw

d3.geoOrthographic() d3.geoOrthographicRaw The orthographic projection.

d3.geoAitoffRaw

d3.geoAitoff() d3.geoAitoffRaw The Aitoff projection.

map.values()

map.values() Returns an array of values for every entry in this map. The order of the returned values is arbitrary.

curve.areaStart()

curve.areaStart() Indicates the start of a new area segment. Each area segment consists of exactly two line segments: the topline, followed by the baseline, with the baseline points in reverse order.

selection.styles()

selection.styles(values[, priority]) A convenience method on top of selection.style for setting multiple style properties. If the specified values is an object, the values may be specified either as strings or functions. For example: selection.styles({fill: "red", stroke: function(d) { return d.stroke; }}); If a value is a constant, all elements are given the same style property value; otherwise, if a value is a function, the function is evaluated for each selected element, in order, being pas