d3.stackOrderDescending()

d3.stackOrderDescending(series) Returns a series order such that the largest series (according to the sum of values) is at the bottom.

radialArea.endAngle()

radialArea.endAngle([angle]) Equivalent to area.x1, except the accessor returns the angle in radians, with 0 at -y (12 o’clock). Note: typically angle is used instead of setting separate start and end angles.

d3.geoEckert1Raw

d3.geoEckert1() d3.geoEckert1Raw The Eckert I projection.

locale.utcFormat()

locale.utcFormat(specifier) Equivalent to locale.format, except all directives are interpreted as Coordinated Universal Time (UTC) rather than local time.

radialLine()

radialLine(data) Equivalent to line.

request.user()

request.user([value]) If value is specified, sets the user name for authentication to the specified string and returns this request instance. If value is not specified, returns the current user name, which defaults to null.

d3.geoMtFlatPolarParabolicRaw

d3.geoMtFlatPolarParabolic() d3.geoMtFlatPolarParabolicRaw The McBryde–Thomas flat-polar parabolic pseudocylindrical equal-area projection.

chord.padAngle()

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

path.bezierCurveTo()

path.bezierCurveTo(cpx1, cpy1, cpx2, cpy2, x, y) Draws a cubic Bézier segment from the current point to the specified point ⟨x, y⟩, with the specified control points ⟨cpx1, cpy1⟩ and ⟨cpx2, cpy2⟩. Equivalent to context.bezierCurveTo and SVG’s cubic Bézier curve commands.

voronoi.size()

voronoi.size([size]) An alias for voronoi.extent where the minimum x and y of the extent are ⟨0,0⟩. Equivalent to: voronoi.extent([[0, 0], size]);