d3.geoConicConformalRaw

d3.geoConicConformal() d3.geoConicConformalRaw The Lambert conformal conic projection; see d3-geo.

quadtree.visitAfter()

quadtree.visitAfter(callback) Visits each node in the quadtree in post-order traversal, invoking the specified callback with arguments node, x0, y0, x1, y1 for each node, where node is the node being visited, ⟨x0, y0⟩ are the lower bounds of the node, and ⟨x1, y1⟩ are the upper bounds, and returns the quadtree. (Assuming that positive x is right and positive y is down, as is typically the case in Canvas and SVG, ⟨x0, y0⟩ is the top-left corner and ⟨x1, y1⟩ is the lower-right corner; however,

d3.interpolateRgbBasis()

d3.interpolateRgbBasis(colors) Returns a uniform nonrational B-spline interpolator through the specified array of colors, which are converted to RGB color space. Implicit control points are generated such that the interpolator returns colors[0] at t = 0 and colors[colors.length - 1] at t = 1. Opacity interpolation is not currently supported. See also d3.interpolateBasis, and see d3-scale-chromatic for examples.

d3.schemePastel2

d3.schemePastel2 An array of eight categorical colors represented as RGB hexadecimal strings.

gingery.radius()

gingery.radius([radius]) Defaults to 30°.

d3.schemeDark2

d3.schemeDark2 An array of eight categorical colors represented as RGB hexadecimal strings.

site

site Each site in the diagram is an array [x, y] with two additional properties: index - the site’s index, corresponding to the associated input point. data - the input data corresponding to this site.

d3.geoSinuMollweideRaw

d3.geoSinuMollweide() d3.geoSinuMollweideRaw Allen K. Philbrick’s Sinu-Mollweide projection. See also the interrupted form.

d3.interpolateDate()

d3.interpolateDate(a, b) Returns an interpolator between the two dates a and b. Note: no defensive copy of the returned date is created; the same Date instance is returned for every evaluation of the interpolator. No copy is made for performance reasons; interpolators are often part of the inner loop of animated transitions.

log()

log(value) See continuous.