d3.geoAitoffRaw

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

d3.geoOrthographicRaw

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

d3.utcMinutes()

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

point.domain()

point.domain([domain]) If domain is specified, sets the domain to the specified array of values. The first element in domain will be mapped to the first point, the second domain value to the second point, and so on. Domain values are stored internally in a map from stringified value to index; the resulting index is then used to determine the point. Thus, a point scale’s values must be coercible to a string, and the stringified version of the domain value uniquely identifies the corresponding p

transform.scale()

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

d3.schemeYlOrRd

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

d3.map()

d3.map([object[, key]]) Constructs a new map. If object is specified, copies all enumerable properties from the specified object into this map. The specified object may also be an array or another map. An optional key function may be specified to compute the key for each value in the array. For example: var map = d3.map([{name: "foo"}, {name: "bar"}], function(d) { return d.name; }); map.get("foo"); // {"name": "foo"} map.get("bar"); // {"name": "bar"} map.get("baz"); // undefined See also ne

d3.interrupt()

d3.interrupt(node[, name]) Interrupts the active transition of the specified name on the specified node, and cancels any pending transitions with the specified name, if any. If a name is not specified, null is used. See also selection.interrupt.

transition.node()

transition.node() Returns the first (non-null) element in this transition. If the transition is empty, returns null. Equivalent to selection.node.

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.