d3.html()

d3.html(url[, callback]) Creates a request for the HTML file at the specified url with the default mime type text/html. The HTML file is returned as a document fragment. This convenience constructor is approximately equivalent to: d3.request(url) .mimeType("text/html") .response(function(xhr) { return document.createRange().createContextualFragment(xhr.responseText); }) .get(callback); HTML parsing requires a global document and relies on DOM Ranges, which are not supported by JSD

pow.invert()

pow.invert(value) See continuous.invert.

set.size()

set.size() Returns the number of values in this set.

d3.symbolTriangle

d3.symbolTriangle The up-pointing triangle symbol type.

d3.interpolateTransformCss()

d3.interpolateTransformCss(a, b) Returns an interpolator between the two 2D CSS transforms represented by a and b. Each transform is decomposed to a standard representation of translate, rotate, x-skew and scale; these component transformations are then interpolated. This behavior is standardized by CSS: see matrix decomposition for animation.

chord.sortSubgroups()

D3 API Reference D3 4.0 is a collection of modules that are designed to work together; you can use the modules independently, or you can use them together as part of the default build. The source and documentation for each module is available in its repository. Follow the links below to learn more. For changes between 3.x and 4.0, see CHANGES; see also the 3.x reference. Arrays (Statistics, Search, Transformations, Histograms) Axes Brushes Chords Collections (Objects, Maps, Sets, Nests) Color

selection.empty()

selection.empty() Returns true if this selection contains no (non-null) elements.

pow.clamp()

pow.clamp(clamp) See continuous.clamp.

curve.point()

curve.point(x, y) Indicates a new point in the current line segment with the given x- and y-values.

d3.geoHammer()

d3.geoHammer() d3.geoHammerRaw(A, B) The Hammer projection. Depending the chosen coefficient and aspect, also known as Eckert–Greifendorff, quartic authalic, and Briesemeister.