@types/d3-shape

  • Version 3.1.6
  • Published
  • 137 kB
  • 1 dependency
  • MIT license

Install

npm i @types/d3-shape
yarn add @types/d3-shape
pnpm add @types/d3-shape

Overview

TypeScript definitions for d3-shape

Index

Variables

Functions

Interfaces

Type Aliases

Namespaces

Variables

variable curveBasis

const curveBasis: CurveFactory;
  • A curve factory for cubic basis spline generators.

    The curve generators produce a cubic basis spline using the specified control points. The first and last points are triplicated such that the spline starts at the first point and ends at the last point, and is tangent to the line between the first and second points, and to the line between the penultimate and last points.

variable curveBasisClosed

const curveBasisClosed: CurveFactory;
  • A curve factory for closed cubic basis spline generators.

    The curve generators produce a closed cubic basis spline using the specified control points. When a line segment ends, the first three control points are repeated, producing a closed loop with C2 continuity.

variable curveBasisOpen

const curveBasisOpen: CurveFactory;
  • A curve factory for open cubic basis spline generators.

    The curve generators produce a cubic basis spline using the specified control points. Unlike basis, the first and last points are not repeated, and thus the curve typically does not intersect these points.

variable curveBumpX

const curveBumpX: CurveFactory;
  • Produces a Bézier curve between each pair of points, with horizontal tangents at each point.

variable curveBumpY

const curveBumpY: CurveFactory;
  • Produces a Bézier curve between each pair of points, with vertical tangents at each point.

variable curveBundle

const curveBundle: CurveBundleFactory;
  • A curve factory for straightened cubic basis spline generators.

    The curve generators produce a straightened cubic basis spline using the specified control points, with the spline straightened according to the curve’s beta, which defaults to 0.85. This curve is typically used in hierarchical edge bundling to disambiguate connections, as proposed by Danny Holten in Hierarchical Edge Bundles: Visualization of Adjacency Relations in Hierarchical Data.

    This curve does not implement curve.areaStart and curve.areaEnd; it is intended to work with d3.line, not d3.area.

variable curveCardinal

const curveCardinal: CurveCardinalFactory;
  • A curve factory for cubic cardinal spline generators.

    The curve generators produce a cubic cardinal spline using the specified control points, with one-sided differences used for the first and last piece. The default tension is 0.

variable curveCardinalClosed

const curveCardinalClosed: CurveCardinalFactory;
  • A curve factory for closed cubic cardinal spline generators.

    The curve generators produce closed cubic cardinal spline using the specified control points. When a line segment ends, the first three control points are repeated, producing a closed loop. The default tension is 0.

variable curveCardinalOpen

const curveCardinalOpen: CurveCardinalFactory;
  • A curve factory for open cubic cardinal spline generators.

    The curve generators produce a cubic cardinal spline using the specified control points. Unlike curveCardinal, one-sided differences are not used for the first and last piece, and thus the curve starts at the second point and ends at the penultimate point. The default tension is 0.

variable curveCatmullRom

const curveCatmullRom: CurveCatmullRomFactory;
  • A curve factory for cubic Catmull–Rom spline generators.

    The curve generators produce a cubic Catmull–Rom spline using the specified control points and the parameter alpha, which defaults to 0.5, as proposed by Yuksel et al. in On the Parameterization of Catmull–Rom Curves, with one-sided differences used for the first and last piece.

variable curveCatmullRomClosed

const curveCatmullRomClosed: CurveCatmullRomFactory;
  • A curve factory for cubic Catmull–Rom spline generators.

    The curve generators produce a closed cubic Catmull–Rom spline using the specified control points and the parameter alpha, which defaults to 0.5, as proposed by Yuksel et al. When a line segment ends, the first three control points are repeated, producing a closed loop.

variable curveCatmullRomOpen

const curveCatmullRomOpen: CurveCatmullRomFactory;
  • A curve factory for cubic Catmull–Rom spline generators.

    The curve generators produce a cubic Catmull–Rom spline using the specified control points and the parameter alpha, which defaults to 0.5, as proposed by Yuksel et al. Unlike curveCatmullRom, one-sided differences are not used for the first and last piece, and thus the curve starts at the second point and ends at the penultimate point.

variable curveLinear

const curveLinear: CurveFactory;
  • A curve factory for polyline generators.

    The curve generators produce a polyline through the specified points.

variable curveLinearClosed

const curveLinearClosed: CurveFactory;
  • A curve factory for closed polyline generators.

    The curve generators produce a closed polyline through the specified points by repeating the first point when the line segment ends.

variable curveMonotoneX

const curveMonotoneX: CurveFactory;
  • A curve factory for cubic spline generators preserving monotonicity in y.

    The curve generators produce a cubic spline that preserves monotonicity in y, assuming monotonicity in x, as proposed by Steffen in A simple method for monotonic interpolation in one dimension: “a smooth curve with continuous first-order derivatives that passes through any given set of data points without spurious oscillations. Local extrema can occur only at grid points where they are given by the data, but not in between two adjacent grid points.”

variable curveMonotoneY

const curveMonotoneY: CurveFactory;
  • A curve factory for cubic spline generators preserving monotonicity in x.

    The curve generators produce a cubic spline that preserves monotonicity in x, assuming monotonicity in y, as proposed by Steffen in A simple method for monotonic interpolation in one dimension: “a smooth curve with continuous first-order derivatives that passes through any given set of data points without spurious oscillations. Local extrema can occur only at grid points where they are given by the data, but not in between two adjacent grid points.”

variable curveNatural

const curveNatural: CurveFactory;
  • A curve factory for natural cubic spline generators.

    The curve generators produce a natural cubic spline with the second derivative of the spline set to zero at the endpoints.

variable curveStep

const curveStep: CurveFactory;
  • A curve factory for step function (midpoint) generators.

    The curve generators produce a piecewise constant function (a step function) consisting of alternating horizontal and vertical lines. The y-value changes at the midpoint of each pair of adjacent x-values.

variable curveStepAfter

const curveStepAfter: CurveFactory;
  • A curve factory for step function (after) generators.

    The curve generators produce a piecewise constant function (a step function) consisting of alternating horizontal and vertical lines. The y-value changes after the x-value.

variable curveStepBefore

const curveStepBefore: CurveFactory;
  • A curve factory for step function (before) generators.

    The curve generators produce a piecewise constant function (a step function) consisting of alternating horizontal and vertical lines. The y-value changes before the x-value.

variable symbolAsterisk

const symbolAsterisk: SymbolType;
  • The asterisk symbol type; intended for stroking.

variable symbolCircle

const symbolCircle: SymbolType;
  • The circle symbol type; intended for either filling or stroking.

variable symbolCross

const symbolCross: SymbolType;
  • The Greek cross symbol type, with arms of equal length; intended for filling.

variable symbolDiamond

const symbolDiamond: SymbolType;
  • The rhombus symbol type; intended for filling.

variable symbolDiamond2

const symbolDiamond2: SymbolType;
  • The rotated square symbol type; intended for stroking.

variable symbolPlus

const symbolPlus: SymbolType;
  • The plus symbol type; intended for stroking.

variable symbols

const symbols: SymbolType[];
  • Deprecated

    Use symbolsFill

variable symbolsFill

const symbolsFill: SymbolType[];
  • An array containing a set of symbol types designed for filling: circle, cross, diamond, square, star, triangle, and wye. Useful for constructing the range of an ordinal scale should you wish to use a shape encoding for categorical data.

variable symbolSquare

const symbolSquare: SymbolType;
  • The square symbol type; intended for filling.

variable symbolSquare2

const symbolSquare2: SymbolType;
  • The square2 symbol type; intended for stroking.

variable symbolsStroke

const symbolsStroke: SymbolType[];
  • An array containing a set of symbol types designed for stroking: circle, plus, x, triangle2, asterisk, square2, and diamond2. Useful for constructing the range of an ordinal scale should you wish to use a shape encoding for categorical data.

variable symbolStar

const symbolStar: SymbolType;
  • The pentagonal star (pentagram) symbol type; intended for filling.

variable symbolTriangle

const symbolTriangle: SymbolType;
  • The up-pointing triangle symbol type; intended for filling.

variable symbolTriangle2

const symbolTriangle2: SymbolType;
  • The up-pointing triangle symbol type; intended for stroking.

variable symbolWye

const symbolWye: SymbolType;
  • The Y-shape symbol type; intended for filling.

variable symbolX

const symbolX: SymbolType;
  • The X-shape symbol type; intended for stroking.

Functions

function arc

arc: {
(): Arc<any, DefaultArcObject>;
<Datum>(): Arc<any, Datum>;
<This, Datum>(): Arc<This, Datum>;
};
  • Constructs a new arc generator with the default settings.

    Ensure that the accessors used with the arc generator correspond to the arguments passed into them, or set them to constants as appropriate.

  • Constructs a new arc generator with the default settings.

    Ensure that the accessors used with the arc generator correspond to the arguments passed into them, or set them to constants as appropriate.

    The generic corresponds to the datum type representing a arc.

  • Constructs a new arc generator with the default settings.

    Ensure that the accessors used with the arc generator correspond to the arguments passed into them, or set them to constants as appropriate.

    The first generic corresponds to the type of the "this" context within which the arc generator and its accessor functions will be invoked.

    The second generic corresponds to the datum type representing a arc.

function area

area: <Datum = [number, number]>(
x?: number | ((d: Datum, index: number, data: Datum[]) => number),
y0?: number | ((d: Datum, index: number, data: Datum[]) => number),
y1?: number | ((d: Datum, index: number, data: Datum[]) => number)
) => Area<Datum>;
  • Constructs a new area generator with the default settings.

    If x, y0 or y1 are specified, sets the corresponding accessors to the specified function or number and returns this area generator.

    The generic refers to the data type of an element in the input array passed into the area generator.

    Parameter x

    Sets the x accessor.

    Parameter y0

    Sets the y0 accessor.

    Parameter y1

    Sets the y1 accessor.

function areaRadial

areaRadial: { (): AreaRadial<[number, number]>; <Datum>(): AreaRadial<Datum> };
  • Constructs a new radial area generator with the default settings.

    Ensure that the accessors used with the area generator correspond to the arguments passed into them, or set them to constants as appropriate.

  • Constructs a new radial area generator with the default settings.

    Ensure that the accessors used with the area generator correspond to the arguments passed into them, or set them to constants as appropriate.

    The generic refers to the data type of an element in the input array passed into the radial area generator.

function line

line: <Datum = [number, number]>(
x?: number | ((d: Datum, index: number, data: Datum[]) => number),
y?: number | ((d: Datum, index: number, data: Datum[]) => number)
) => Line<Datum>;
  • Constructs a new line generator with the default settings.

    If x or y are specified, sets the corresponding accessors to the specified function or number and returns this line generator.

    The generic refers to the data type of an element in the input array passed into the line generator.

    Parameter x

    Sets the x accessor

    Parameter y

    Sets the y accessor

function lineRadial

lineRadial: { (): LineRadial<[number, number]>; <Datum>(): LineRadial<Datum> };
  • Constructs a new radial line generator with the default settings.

    Ensure that the accessors used with the radial line generator correspond to the arguments passed into them, or set them to constants as appropriate.

  • Constructs a new radial line generator with the default settings.

    Ensure that the accessors used with the radial line generator correspond to the arguments passed into them, or set them to constants as appropriate.

    The generic refers to the data type of an element in the input array passed into the radial line generator.

link: {
(curve: CurveFactory): Link<any, DefaultLinkObject, [number, number]>;
<LinkDatum, NodeDatum>(curve: CurveFactory): Link<any, LinkDatum, NodeDatum>;
<This, LinkDatum, NodeDatum>(curve: CurveFactory): Link<
This,
LinkDatum,
NodeDatum
>;
};
  • Returns a new link generator using the specified curve. For example, to visualize links in a tree diagram rooted on the top edge of the display

    With the default settings the link generator accepts a link object conforming to the DefaultLinkObject interface.

  • Returns a new link generator using the specified curve. For example, to visualize links in a tree diagram rooted on the top edge of the display

    Important: Ensure that the accessor functions are configured to work with the link and node datum types specified in the generics.

    The first generic corresponds to the datum type of the link object for which the link is to be generated.

    The second generic corresponds to the datum type of the source/target node contained in the link object.

  • Returns a new link generator using the specified curve. For example, to visualize links in a tree diagram rooted on the top edge of the display

    Important: Ensure that the accessor functions are configured to work with the link and node datum types specified in the generics.

    The first generic corresponds to the type of the "this" context within which the link generator and its accessor functions will be invoked.

    The second generic corresponds to the datum type of the link object for which the link is to be generated.

    The third generic corresponds to the datum type of the source/target node contained in the link object.

function linkHorizontal

linkHorizontal: {
(): Link<any, DefaultLinkObject, [number, number]>;
<LinkDatum, NodeDatum>(): Link<any, LinkDatum, NodeDatum>;
<This, LinkDatum, NodeDatum>(): Link<This, LinkDatum, NodeDatum>;
};
  • Shorthand for d3.link with d3.curveBumpX; suitable for visualizing links in a tree diagram rooted on the left edge of the display.

    With the default settings the link generator accepts a link object conforming to the DefaultLinkObject interface.

  • Shorthand for d3.link with d3.curveBumpX; suitable for visualizing links in a tree diagram rooted on the left edge of the display.

    Important: Ensure that the accessor functions are configured to work with the link and node datum types specified in the generics.

    The first generic corresponds to the datum type of the link object for which the link is to be generated.

    The second generic corresponds to the datum type of the source/target node contained in the link object.

  • Shorthand for d3.link with d3.curveBumpX; suitable for visualizing links in a tree diagram rooted on the left edge of the display.

    Important: Ensure that the accessor functions are configured to work with the link and node datum types specified in the generics.

    The first generic corresponds to the type of the "this" context within which the link generator and its accessor functions will be invoked.

    The second generic corresponds to the datum type of the link object for which the link is to be generated.

    The third generic corresponds to the datum type of the source/target node contained in the link object.

function linkRadial

linkRadial: {
(): LinkRadial<any, DefaultLinkObject, [number, number]>;
<LinkDatum, NodeDatum>(): LinkRadial<any, LinkDatum, NodeDatum>;
<This, LinkDatum, NodeDatum>(): LinkRadial<This, LinkDatum, NodeDatum>;
};
  • Constructs a new default link generator with radial tangents, for example, to visualize links in a tree diagram rooted in the center of the display.

    With the default settings the link generator accepts a link object conforming to the DefaultLinkObject interface.

  • Constructs a new link generator with radial tangents, for example, to visualize links in a tree diagram rooted in the center of the display.

    Important: Ensure that the accessor functions are configured to work with the link and node datum types specified in the generics.

    The first generic corresponds to the datum type of the link object for which the link is to be generated.

    The second generic corresponds to the datum type of the source/target node contained in the link object.

  • Constructs a new link generator with radial tangents, for example, to visualize links in a tree diagram rooted in the center of the display.

    Important: Ensure that the accessor functions are configured to work with the link and node datum types specified in the generics.

    The first generic corresponds to the type of the "this" context within which the link generator and its accessor functions will be invoked.

    The second generic corresponds to the datum type of the link object for which the link is to be generated.

    The third generic corresponds to the datum type of the source/target node contained in the link object.

function linkVertical

linkVertical: {
(): Link<any, DefaultLinkObject, [number, number]>;
<LinkDatum, NodeDatum>(): Link<any, LinkDatum, NodeDatum>;
<This, LinkDatum, NodeDatum>(): Link<This, LinkDatum, NodeDatum>;
};
  • Shorthand for d3.link with d3.curveBumpX; suitable for visualizing links in a tree diagram rooted on the left edge of the display.

    With the default settings the link generator accepts a link object conforming to the DefaultLinkObject interface.

  • Shorthand for d3.link with d3.curveBumpY; suitable for visualizing links in a tree diagram rooted on the top edge of the display.

    Important: Ensure that the accessor functions are configured to work with the link and node datum types specified in the generics.

    The first generic corresponds to the datum type of the link object for which the link is to be generated.

    The second generic corresponds to the datum type of the source/target node contained in the link object.

  • Shorthand for d3.link with d3.curveBumpY; suitable for visualizing links in a tree diagram rooted on the top edge of the display.

    Important: Ensure that the accessor functions are configured to work with the link and node datum types specified in the generics.

    The first generic corresponds to the type of the "this" context within which the link generator and its accessor functions will be invoked.

    The second generic corresponds to the datum type of the link object for which the link is to be generated.

    The third generic corresponds to the datum type of the source/target node contained in the link object.

function pie

pie: {
(): Pie<any, number | { valueOf(): number }>;
<Datum>(): Pie<any, Datum>;
<This, Datum>(): Pie<This, Datum>;
};
  • Constructs a new pie generator with the default settings.

    Ensure that the accessors used with the pie generator correspond to the arguments passed into them, or set them to constants as appropriate.

  • Constructs a new pie generator with the default settings.

    Ensure that the accessors used with the pie generator correspond to the arguments passed into them, or set them to constants as appropriate.

    The generic refers to the data type of an element in the input array passed into the Pie generator.

  • Constructs a new pie generator with the default settings.

    Ensure that the accessors used with the pie generator correspond to the arguments passed into them, or set them to constants as appropriate.

    The first generic corresponds to the type of the "this" context within which the pie generator and its accessor functions will be invoked.

    The second generic refers to the data type of an element in the input array passed into the Pie generator.

function pointRadial

pointRadial: (angle: number, radius: number) => [number, number];
  • Returns the point [x, y] for the given angle and the given radius.

    Parameter angle

    Angle in radians, with 0 at -y (12 o’clock) and positive angles proceeding clockwise.

    Parameter radius

    Radius.

function radialArea

radialArea: { (): RadialArea<[number, number]>; <Datum>(): RadialArea<Datum> };
  • Deprecated

    Use areaRadial()

  • Deprecated

    Use areaRadial()

function radialLine

radialLine: { (): RadialLine<[number, number]>; <Datum>(): RadialLine<Datum> };
  • Deprecated

    Use lineRadial()

  • Deprecated

    Use lineRadial()

function stack

stack: {
(): Stack<any, { [key: string]: number }, string>;
<Datum>(): Stack<any, Datum, string>;
<Datum, Key>(): Stack<any, Datum, Key>;
<This, Datum, Key>(): Stack<This, Datum, Key>;
};
  • Constructs a new stack generator with the default settings.

    Ensure that the accessors used with the stack generator correspond to the arguments passed into them.

  • Constructs a new stack generator with the default settings.

    Ensure that the accessors used with the stack generator correspond to the arguments passed into them.

    The generic corresponds to the data type of an element in the data array passed into the stack generator.

  • Constructs a new stack generator with the default settings.

    Ensure that the accessors used with the stack generator correspond to the arguments passed into them.

    The first generic corresponds to the data type of an element in the data array passed into the stack generator.

    The second generic corresponds to the data type of key used to identify a series.

  • Constructs a new stack generator with the default settings.

    Ensure that the accessors used with the stack generator correspond to the arguments passed into them.

    The first generic corresponds to the "this" context in which the stack generator and its accessor functions are invoked.

    The second generic corresponds to the data type of an element in the data array passed into the stack generator.

    The third generic corresponds to the data type of key used to identify a series.

function stackOffsetDiverging

stackOffsetDiverging: (
series: Series<any, any>,
order: Iterable<number>
) => void;
  • Positive values are stacked above zero, while negative values are stacked below zero.

    Parameter series

    A series generated by a stack generator.

    Parameter order

    An array of numeric indexes representing the stack order.

function stackOffsetExpand

stackOffsetExpand: (series: Series<any, any>, order: Iterable<number>) => void;
  • Applies a zero baseline and normalizes the values for each point such that the topline is always one.

    Parameter series

    A series generated by a stack generator.

    Parameter order

    An array of numeric indexes representing the stack order.

function stackOffsetNone

stackOffsetNone: (series: Series<any, any>, order: Iterable<number>) => void;
  • Applies a zero baseline.

    Parameter series

    A series generated by a stack generator.

    Parameter order

    An array of numeric indexes representing the stack order.

function stackOffsetSilhouette

stackOffsetSilhouette: (
series: Series<any, any>,
order: Iterable<number>
) => void;
  • Shifts the baseline down such that the center of the streamgraph is always at zero.

    Parameter series

    A series generated by a stack generator.

    Parameter order

    An array of numeric indexes representing the stack order.

function stackOffsetWiggle

stackOffsetWiggle: (series: Series<any, any>, order: Iterable<number>) => void;
  • Shifts the baseline so as to minimize the weighted wiggle of layers. This offset is recommended for streamgraphs in conjunction with the inside-out order. See Stacked Graphs—Geometry & Aesthetics by Bryon & Wattenberg for more information.

    Parameter series

    A series generated by a stack generator.

    Parameter order

    An array of numeric indexes representing the stack order.

function stackOrderAppearance

stackOrderAppearance: (series: Series<any, any>) => number[];
  • Returns a series order such that the earliest series (according to the maximum value) is at the bottom.

    Parameter series

    A series generated by a stack generator.

function stackOrderAscending

stackOrderAscending: (series: Series<any, any>) => number[];
  • Returns a series order such that the smallest series (according to the sum of values) is at the bottom.

    Parameter series

    A series generated by a stack generator.

function stackOrderDescending

stackOrderDescending: (series: Series<any, any>) => number[];
  • Returns a series order such that the largest series (according to the sum of values) is at the bottom.

    Parameter series

    A series generated by a stack generator.

function stackOrderInsideOut

stackOrderInsideOut: (series: Series<any, any>) => number[];
  • Returns a series order such that the larger series (according to the sum of values) are on the inside and the smaller series are on the outside. This order is recommended for streamgraphs in conjunction with the wiggle offset. See Stacked Graphs—Geometry & Aesthetics by Byron & Wattenberg for more information.

    Parameter series

    A series generated by a stack generator.

function stackOrderNone

stackOrderNone: (series: Series<any, any>) => number[];
  • Returns the given series order [0, 1, … n - 1] where n is the number of elements in series. Thus, the stack order is given by the key accessor.

    Parameter series

    A series generated by a stack generator.

function stackOrderReverse

stackOrderReverse: (series: Series<any, any>) => number[];
  • Returns the reverse of the given series order [n - 1, n - 2, … 0] where n is the number of elements in series. Thus, the stack order is given by the reverse of the key accessor.

    Parameter series

    A series generated by a stack generator.

function symbol

symbol: {
<Datum = any>(
type?: SymbolType | ((this: any, d: Datum, ...args: any[]) => SymbolType),
size?: number | ((this: any, d: Datum, ...args: any[]) => number)
): Symbol<any, Datum>;
<This, Datum>(
type?: SymbolType | ((this: This, d: Datum, ...args: any[]) => SymbolType),
size?: number | ((this: This, d: Datum, ...args: any[]) => number)
): Symbol<This, Datum>;
};
  • Constructs a new symbol generator of the specified type and size. If not specified, type defaults to a circle, and size defaults to 64.

    The first generic corresponds to the "this" context within which the symbol generator is invoked. The second generic corresponds to the data type of the datum underlying the symbol.

    Parameter type

    The specified type.

    Parameter size

    The specified size.

Interfaces

interface Arc

interface Arc<This, Datum> {}
  • The arc generator produces a circular or annular sector, as in a pie or donut chart.

    If the difference between the start and end angles (the angular span) is greater than τ, the arc generator will produce a complete circle or annulus. If it is less than τ, arcs may have rounded corners and angular padding. Arcs are always centered at ⟨0,0⟩; use a transform (see: SVG, Canvas) to move the arc to a different position.

    See also the pie generator, which computes the necessary angles to represent an array of data as a pie or donut chart; these angles can then be passed to an arc generator.

    The first generic corresponds to the type of the "this" context within which the arc generator and its accessor functions will be invoked.

    The second generic corresponds to the datum type for which the arc is to be generated.

method centroid

centroid: (d: Datum, ...args: any[]) => [number, number];
  • Computes the midpoint [x, y] of the center line of the arc that would be generated by the given arguments.

    To be consistent with the generated arc, the accessors must be deterministic, i.e., return the same value given the same arguments. The midpoint is defined as (startAngle + endAngle) / 2 and (innerRadius + outerRadius) / 2.

    Note that this is not the geometric center of the arc, which may be outside the arc; this method is merely a convenience for positioning labels.

    The method is invoked in the same "this" context as the generator was invoked in and receives the same arguments that are passed into the arc generator.

    Parameter d

    The datum for which the arc is to be generated.

method context

context: {
(): CanvasRenderingContext2D | null;
(context: CanvasRenderingContext2D): this;
};
  • Returns the current rendering context, which defaults to null.

  • Sets the context and returns this arc generator. If context is not specified, returns the current context, which defaults to null.

method cornerRadius

cornerRadius: {
(): (this: This, d: Datum, ...args: any[]) => number;
(radius: number): this;
(radius: (this: This, d: Datum, ...args: any[]) => number): this;
};
  • Returns the current corner radius accessor, which defaults to a function returning a constant value of zero.

  • Sets the corner radius to the specified number and returns this arc generator.

    If the corner radius is greater than zero, the corners of the arc are rounded using circles of the given radius. For a circular sector, the two outer corners are rounded; for an annular sector, all four corners are rounded.

    The corner radius may not be larger than (outerRadius - innerRadius) / 2. In addition, for arcs whose angular span is less than π, the corner radius may be reduced as two adjacent rounded corners intersect. This is occurs more often with the inner corners.

    Parameter radius

    Constant radius.

  • Sets the corner radius to the specified function and returns this arc generator.

    The corner radius may not be larger than (outerRadius - innerRadius) / 2. In addition, for arcs whose angular span is less than π, the corner radius may be reduced as two adjacent rounded corners intersect. This is occurs more often with the inner corners.

    Parameter radius

    An accessor function returning a number to be used as a radius. The accessor function is invoked in the same "this" context as the generator was invoked in and receives the same arguments that were passed into the arc generator.

method endAngle

endAngle: {
(): (this: This, d: Datum, ...args: any[]) => number;
(angle: number): this;
(angle: (this: This, d: Datum, ...args: any[]) => number): this;
};
  • Returns the current end angle accessor, which defaults to a function returning the endAngle property of the first argument passed into it.

  • Sets the end angle to the specified number and returns this arc generator.

    The angle is specified in radians, with 0 at -y (12 o’clock) and positive angles proceeding clockwise. If |endAngle - startAngle| ≥ τ, a complete circle or annulus is generated rather than a sector.

    Parameter angle

    Constant angle in radians.

  • Sets the end angle to the specified function and returns this arc generator.

    The angle is specified in radians, with 0 at -y (12 o’clock) and positive angles proceeding clockwise. If |endAngle - startAngle| ≥ τ, a complete circle or annulus is generated rather than a sector.

    Parameter angle

    An accessor function returning a number in radians to be used as an angle. The accessor function is invoked in the same "this" context as the generator was invoked in and receives the same arguments that were passed into the arc generator.

method innerRadius

innerRadius: {
(): (this: This, d: Datum, ...args: any[]) => number;
(radius: number): this;
(radius: (this: This, d: Datum, ...args: any[]) => number): this;
};
  • Returns the current inner radius accessor, which defaults to a function returning the innerRadius property of the first argument passed into it.

  • Sets the inner radius to the specified number and returns this arc generator.

    Specifying the inner radius as a function is useful for constructing a stacked polar bar chart, often in conjunction with a sqrt scale. More commonly, a constant inner radius is used for a donut or pie chart. If the outer radius is smaller than the inner radius, the inner and outer radii are swapped. A negative value is treated as zero.

    Parameter radius

    Constant radius.

  • Sets the inner radius to the specified function and returns this arc generator.

    Specifying the inner radius as a function is useful for constructing a stacked polar bar chart, often in conjunction with a sqrt scale. More commonly, a constant inner radius is used for a donut or pie chart. If the outer radius is smaller than the inner radius, the inner and outer radii are swapped. A negative value is treated as zero.

    Parameter radius

    An accessor function returning a number to be used as a radius. The accessor function is invoked in the same "this" context as the generator was invoked in and receives the same arguments that were passed into the arc generator.

method outerRadius

outerRadius: {
(): (this: This, d: Datum, ...args: any[]) => number;
(radius: number): this;
(radius: (this: This, d: Datum, ...args: any[]) => number): this;
};
  • Returns the current outer radius accessor, which defaults to a function returning the outerRadius property of the first argument passed into it.

  • Sets the outer radius to the specified number and returns this arc generator.

    Specifying the outer radius as a function is useful for constructing a coxcomb or polar bar chart, often in conjunction with a sqrt scale. More commonly, a constant outer radius is used for a pie or donut chart. If the outer radius is smaller than the inner radius, the inner and outer radii are swapped. A negative value is treated as zero.

    Parameter radius

    Constant radius.

  • Sets the outer radius to the specified function and returns this arc generator.

    Specifying the outer radius as a function is useful for constructing a coxcomb or polar bar chart, often in conjunction with a sqrt scale. More commonly, a constant outer radius is used for a pie or donut chart. If the outer radius is smaller than the inner radius, the inner and outer radii are swapped. A negative value is treated as zero.

    Parameter radius

    An accessor function returning a number to be used as a radius. The accessor function is invoked in the same "this" context as the generator was invoked in and receives the same arguments that were passed into the arc generator.

method padAngle

padAngle: {
(): (this: This, d: Datum, ...args: any[]) => number | undefined;
(angle: number): this;
(angle: (this: This, d: Datum, ...args: any[]) => number): this;
};
  • Returns the current pad angle accessor, which defaults to a function returning the padAngle property of the first argument passed into it, or false if no data are passed in or the property is not defined.

  • Sets the pad angle to the specified number and returns this arc generator.

    The pad angle is converted to a fixed linear distance separating adjacent arcs, defined as padRadius * padAngle. This distance is subtracted equally from the start and end of the arc. If the arc forms a complete circle or annulus, as when |endAngle - startAngle| ≥ τ, the pad angle is ignored. If the inner radius or angular span is small relative to the pad angle, it may not be possible to maintain parallel edges between adjacent arcs. In this case, the inner edge of the arc may collapse to a point, similar to a circular sector. For this reason, padding is typically only applied to annular sectors (i.e., when innerRadius is positive).

    The recommended minimum inner radius when using padding is outerRadius * padAngle / sin(θ), where θ is the angular span of the smallest arc before padding. For example, if the outer radius is 200 pixels and the pad angle is 0.02 radians, a reasonable θ is 0.04 radians, and a reasonable inner radius is 100 pixels.

    Often, the pad angle is not set directly on the arc generator, but is instead computed by the pie generator so as to ensure that the area of padded arcs is proportional to their value; see pie.padAngle. See the pie padding animation for illustration. If you apply a constant pad angle to the arc generator directly, it tends to subtract disproportionately from smaller arcs, introducing distortion.

    Parameter angle

    Constant angle in radians.

  • Sets the pad angle to the specified function and returns this arc generator.

    The pad angle is converted to a fixed linear distance separating adjacent arcs, defined as padRadius * padAngle. This distance is subtracted equally from the start and end of the arc. If the arc forms a complete circle or annulus, as when |endAngle - startAngle| ≥ τ, the pad angle is ignored. If the inner radius or angular span is small relative to the pad angle, it may not be possible to maintain parallel edges between adjacent arcs. In this case, the inner edge of the arc may collapse to a point, similar to a circular sector. For this reason, padding is typically only applied to annular sectors (i.e., when innerRadius is positive).

    The recommended minimum inner radius when using padding is outerRadius * padAngle / sin(θ), where θ is the angular span of the smallest arc before padding. For example, if the outer radius is 200 pixels and the pad angle is 0.02 radians, a reasonable θ is 0.04 radians, and a reasonable inner radius is 100 pixels.

    Often, the pad angle is not set directly on the arc generator, but is instead computed by the pie generator so as to ensure that the area of padded arcs is proportional to their value; see pie.padAngle. See the pie padding animation for illustration. If you apply a constant pad angle to the arc generator directly, it tends to subtract disproportionately from smaller arcs, introducing distortion.

    Parameter angle

    An accessor function returning a number in radians to be used as an angle. The accessor function is invoked in the same "this" context as the generator was invoked in and receives the same arguments that were passed into the arc generator.

method padRadius

padRadius: {
(): (this: This, d: Datum, ...args: any[]) => number;
(radius: number | ((this: This, d: Datum, ...args: any[]) => number)): this;
};
  • Returns the current pad radius accessor, which defaults to null, indicating that the pad radius should be automatically computed as sqrt(innerRadius * innerRadius + outerRadius * outerRadius).

  • Sets the pad radius to the specified function or number and returns this arc generator. The pad radius determines the fixed linear distance separating adjacent arcs, defined as padRadius * padAngle.

method startAngle

startAngle: {
(): (this: This, d: Datum, ...args: any[]) => number;
(angle: number): this;
(angle: (this: This, d: Datum, ...args: any[]) => number): this;
};
  • Returns the current start angle accessor, which defaults to a function returning the startAngle property of the first argument passed into it.

  • Sets the start angle to the specified number and returns this arc generator.

    The angle is specified in radians, with 0 at -y (12 o’clock) and positive angles proceeding clockwise. If |endAngle - startAngle| ≥ τ, a complete circle or annulus is generated rather than a sector.

    Parameter angle

    Constant angle in radians.

  • Sets the start angle to the specified function and returns this arc generator.

    The angle is specified in radians, with 0 at -y (12 o’clock) and positive angles proceeding clockwise. If |endAngle - startAngle| ≥ τ, a complete circle or annulus is generated rather than a sector.

    Parameter angle

    An accessor function returning a number in radians to be used as an angle. The accessor function is invoked in the same "this" context as the generator was invoked in and receives the same arguments that were passed into the arc generator.

call signature

(this: This, d: Datum, ...args: any[]): string | null;
  • Generates an arc for the given arguments.

    IMPORTANT: If the rendering context of the arc generator is null, then the arc is returned as a path data string.

    The "this" context within which this function is invoked, will be the context within which the accessor methods of the generator are invoked. All arguments passed into this function, will be passed to the accessor functions of the generator.

    Parameter d

    The datum for which the arc is to be generated.

call signature

(this: This, d: Datum, ...args: any[]): void;
  • Generates an arc for the given arguments.

    IMPORTANT: If the arc generator has been configured with a rendering context, then the arc is rendered to this context as a sequence of path method calls and this function returns void.

    The "this" context within which this function is invoked, will be the context within which the accessor methods of the generator are invoked. All arguments passed into this function, will be passed to the accessor functions of the generator.

    Parameter d

    The datum for which the arc is to be generated.

interface Area

interface Area<Datum> {}
  • The area generator produces an area, as in an area chart. An area is defined by two bounding lines, either splines or polylines. Typically, the two lines share the same x-values (x0 = x1), differing only in y-value (y0 and y1); most commonly, y0 is defined as a constant representing zero. The first line (the topline) is defined by x1 and y1 and is rendered first; the second line (the baseline) is defined by x0 and y0 and is rendered second, with the points in reverse order. With a curveLinear curve, this produces a clockwise polygon.

    The generic refers to the data type of an element in the input array passed into the area generator.

method context

context: {
(): CanvasRenderingContext2D | null;
(context: CanvasRenderingContext2D): this;
};
  • Returns the current rendering context, which defaults to null.

  • Sets the context and returns this area generator.

method curve

curve: {
(): CurveFactory;
<C extends CurveFactory>(): C;
(curve: CurveFactory): this;
};
  • Returns the current curve factory, which defaults to curveLinear.

  • Returns the current curve factory, which defaults to curveLinear.

    The generic allows to cast the curve factory to a specific type, if known.

  • Sets the curve factory and returns this area generator.

    Parameter curve

    A valid curve factory.

method defined

defined: {
(): (d: Datum, index: number, data: Datum[]) => boolean;
(defined: boolean): this;
(defined: (d: Datum, index: number, data: Datum[]) => boolean): this;
};
  • Returns the current defined accessor, which defaults to a function returning a constant boolean value of true.

  • Sets the defined accessor to the specified boolean and returns this area generator.

    The default accessor for defined returns a constant boolean value of true, thus assumes that the input data is always defined. When an area is generated, the defined accessor will be invoked for each element in the input data array, being passed the element d, the index i, and the array data as three arguments. If the given element is defined (i.e., if the defined accessor returns a truthy value for this element), the x0, x1, y0 and y1 accessors will subsequently be evaluated and the point will be added to the current area segment. Otherwise, the element will be skipped, the current area segment will be ended, and a new area segment will be generated for the next defined point. As a result, the generated area may have several discrete segments.

    Note that if an area segment consists of only a single point, it may appear invisible unless rendered with rounded or square line caps. In addition, some curves such as curveCardinalOpen only render a visible segment if it contains multiple points.

    Parameter defined

    A boolean constant.

  • Sets the defined accessor to the specified function and returns this area generator.

    The default accessor for defined returns a constant boolean value of true, thus assumes that the input data is always defined.

    The default accessor for defined returns a constant boolean value of true, thus assumes that the input data is always defined. When an area is generated, the defined accessor will be invoked for each element in the input data array, being passed the element d, the index i, and the array data as three arguments. If the given element is defined (i.e., if the defined accessor returns a truthy value for this element), the x0, x1, y0 and y1 accessors will subsequently be evaluated and the point will be added to the current area segment. Otherwise, the element will be skipped, the current area segment will be ended, and a new area segment will be generated for the next defined point. As a result, the generated area may have several discrete segments.

    Note that if an area segment consists of only a single point, it may appear invisible unless rendered with rounded or square line caps. In addition, some curves such as curveCardinalOpen only render a visible segment if it contains multiple points.

    Parameter defined

    An accessor function which returns a boolean value. The accessor will be invoked for each defined element in the input data array, being passed the element d, the index i, and the array data as three arguments.

method lineX0

lineX0: () => Line<Datum>;
  • Returns a new line generator that has this area generator’s current defined accessor, curve and context. The line’s x-accessor is this area’s x0-accessor, and the line’s y-accessor is this area’s y0-accessor.

method lineX1

lineX1: () => Line<Datum>;
  • Returns a new line generator that has this area generator’s current defined accessor, curve and context. The line’s x-accessor is this area’s x1-accessor, and the line’s y-accessor is this area’s y0-accessor.

method lineY0

lineY0: () => Line<Datum>;
  • Returns a new line generator that has this area generator’s current defined accessor, curve and context. The line’s x-accessor is this area’s x0-accessor, and the line’s y-accessor is this area’s y0-accessor.

method lineY1

lineY1: () => Line<Datum>;
  • Returns a new line generator that has this area generator’s current defined accessor, curve and context. The line’s x-accessor is this area’s x0-accessor, and the line’s y-accessor is this area’s y1-accessor.

method x

x: {
(): (d: Datum, index: number, data: Datum[]) => number;
(x: number): this;
(x: (d: Datum, index: number, data: Datum[]) => number): this;
};
  • Returns the current x0 accessor. The default x0 accessor is a function returning the first element of a two-element array of numbers.

  • Sets x0 to a constant number x and x1 to null and returns this area generator.

    Setting x1 to null indicates that the previously-computed x0 value should be reused for the x1 value.

    Parameter x

    A constant value to be used for x0.

  • Sets x0 to the specified function x and x1 to null and returns this area generator.

    The default x0 accessor assumes that the input data are two-element arrays of numbers and returns the first element. If your data are in a different format, or if you wish to transform the data before rendering, then you should specify a custom accessor.

    Parameter x

    An accessor function returning a value to be used for x0. The accessor will be invoked for each defined element in the input data array, being passed the element d, the index i, and the array data as three arguments.

method x0

x0: {
(): (d: Datum, index: number, data: Datum[]) => number;
(x: number): this;
(x: (d: Datum, index: number, data: Datum[]) => number): this;
};
  • Returns the current x0 accessor. The default x0 accessor is a function returning the first element of a two-element array of numbers.

  • Sets x0 to a constant number and returns this area generator.

    Parameter x

    A constant value.

  • Sets x0 to the specified function and returns this area generator.

    The default x0 accessor assumes that the input data are two-element arrays of numbers and returns the first element. If your data are in a different format, or if you wish to transform the data before rendering, then you should specify a custom accessor.

    Parameter x

    An accessor function returning a value to be used for x0. The accessor will be invoked for each defined element in the input data array, being passed the element d, the index i, and the array data as three arguments.

method x1

x1: {
(): (d: Datum, index: number, data: Datum[]) => number;
(x: number): this;
(x: (d: Datum, index: number, data: Datum[]) => number): this;
};
  • Returns the current x1 accessor, which defaults to null, indicating that the previously-computed x0 value should be reused for the x1 value.

  • Sets the x1 accessor to the specified number and returns this area generator.

  • Sets x1 to the specified function and returns this area generator.

    The default x1 accessor is null, indicating that the previously-computed x0 value should be reused for the x1 value. If your data are in a different format, or if you wish to transform the data before rendering, then you should specify a custom accessor.

    Parameter x

    An accessor function returning a value to be used for x1. The accessor will be invoked for each defined element in the input data array, being passed the element d, the index i, and the array data as three arguments.

method y

y: {
(): (d: Datum, index: number, data: Datum[]) => number;
(y: number): this;
(y: (d: Datum, index: number, data: Datum[]) => number): this;
};
  • Returns the current y0 accessor. The default y0 accessor is a function returning a constant value of zero.

  • Sets y0 to a constant number y and y1 to null and returns this area generator.

    Setting y1 to null indicates that the previously-computed y0 value should be reused for the y1 value.

    Parameter y

    A constant value to be used for y0.

  • Sets y0 to the accessor function y and y1 to null and returns this area generator.

    The default y0 accessor returns a constant value of zero. If your data are in a different format, or if you wish to transform the data before rendering, then you should specify a custom accessor.

    Parameter y

    An accessor function returning a value to be used for y0. The accessor will be invoked for each defined element in the input data array, being passed the element d, the index i, and the array data as three arguments.

method y0

y0: {
(): (d: Datum, index: number, data: Datum[]) => number;
(y: number): this;
(y: (d: Datum, index: number, data: Datum[]) => number): this;
};
  • Returns the current y0 accessor. The default y0 accessor is a function a constant value of zero.

  • Sets y0 to a constant number and returns this area generator.

    Parameter y

    A constant value.

  • Sets y0 to the specified function and returns this area generator.

    The default y0 accessor is a function which returns a constant value of zero. If your data are in a different format, or if you wish to transform the data before rendering, then you should specify a custom accessor.

    Parameter y

    An accessor function returning a value to be used for y0. The accessor will be invoked for each defined element in the input data array, being passed the element d, the index i, and the array data as three arguments.

method y1

y1: {
(): (d: Datum, index: number, data: Datum[]) => number;
(y: number): this;
(y: (d: Datum, index: number, data: Datum[]) => number): this;
};
  • Returns the current y1 accessor or null. The default y1 accessor is a function returning the second element of a two-element array of numbers.

    If the y1 accessor is null, the previously-computed y0 value is reused for the y1 value.

  • sets the y1 accessor to the specified number and returns this area generator.

  • Sets y1 to the specified function and returns this area generator.

    The default y1 accessor assumes that the input data are two-element arrays of numbers and returns the second element. If your data are in a different format, or if you wish to transform the data before rendering, then you should specify a custom accessor.

    Parameter y

    An accessor function returning a value to be used for y1. The accessor will be invoked for each defined element in the input data array, being passed the element d, the index i, and the array data as three arguments.

call signature

(data: Iterable<Datum> | Datum[]): string | null;
  • Generates an area for the given array of data. Depending on this area generator’s associated curve, the given input data may need to be sorted by x-value before being passed to the area generator.

    IMPORTANT: If the rendering context of the area generator is null, then the area is returned as a path data string.

    Parameter data

    Array of data elements.

call signature

(data: Iterable<Datum> | Datum[]): void;
  • Generates an area for the given array of data. Depending on this area generator’s associated curve, the given input data may need to be sorted by x-value before being passed to the area generator.

    IMPORTANT: If the area generator has been configured with a rendering context, then the area is rendered to this context as a sequence of path method calls and this function returns void.

    Parameter data

    Array of data elements.

interface AreaRadial

interface AreaRadial<Datum> {}
  • A radial area generator.

    A radial area generator is equivalent to the standard Cartesian area generator, except the x and y accessors are replaced with angle and radius accessors. Radial areas are always positioned relative to ⟨0,0⟩; use a transform (see: SVG, Canvas) to change the origin.

    The generic refers to the data type of an element in the input array passed into the area generator.

method angle

angle: {
(): (d: Datum, index: number, data: Datum[]) => number;
(angle: number): this;
(angle: (d: Datum, index: number, data: Datum[]) => number): this;
};
  • Returns the current startAngle accessor. The default startAngle accessor is a function returning the first element of a two-element array of numbers.

  • Sets startAngle to a constant number angle and endAngle to null and returns this radial area generator.

    Setting endAngle to null indicates that the previously-computed startAngle value should be reused for the endAngle value.

    Parameter angle

    A constant value in radians with 0 at -y (12 o’clock).

  • Sets startAngle to the specified function angle and endAngle to null and returns this radial area generator.

    The default startAngle accessor assumes that the input data are two-element arrays of numbers and returns the first element. If your data are in a different format, or if you wish to transform the data before rendering, then you should specify a custom accessor.

    Parameter angle

    An accessor function returning a value to be used for startAngle in radians with 0 at -y (12 o’clock). The accessor will be invoked for each defined element in the input data array, being passed the element d, the index i, and the array data as three arguments.

method context

context: {
(): CanvasRenderingContext2D | null;
(context: CanvasRenderingContext2D): this;
};
  • Returns the current rendering context, which defaults to null.

  • Equivalent to line.context.

method curve

curve: {
(): CurveFactory;
<C extends CurveFactory>(): C;
(curve: CurveFactory): this;
};
  • Returns the current curve factory, which defaults to curveLinear.

  • Returns the current curve factory, which defaults to curveLinear.

    The generic allows to cast the curve factory to a specific type, if known.

  • Sets the curve factory and returns this radial area generator.

    Note that curveMonotoneX or curveMonotoneY are not recommended for radial areas because they assume that the data is monotonic in x or y, which is typically untrue of radial areas.

    Parameter curve

    A valid curve factory.

method defined

defined: {
(): (d: Datum, index: number, data: Datum[]) => boolean;
(defined: boolean): this;
(defined: (d: Datum, index: number, data: Datum[]) => boolean): this;
};
  • Returns the current defined accessor, which defaults to a function returning a constant boolean value of true.

  • Sets the defined accessor to the specified boolean and returns this radial area generator.

    The default accessor for defined returns a constant boolean value of true, thus assumes that the input data is always defined.

    When a radial area is generated, the defined accessor will be invoked for each element in the input data array, being passed the element d, the index i, and the array data as three arguments. If the given element is defined (i.e., if the defined accessor returns a truthy value for this element), the startAngle, endAngle, innerRadius and outerRadius accessors will subsequently be evaluated and the point will be added to the current area segment.

    Otherwise, the element will be skipped, the current area segment will be ended, and a new area segment will be generated for the next defined point. As a result, the generated area may have several discrete segments.

    Note that if an area segment consists of only a single point, it may appear invisible unless rendered with rounded or square line caps. In addition, some curves such as curveCardinalOpen only render a visible segment if it contains multiple points.

    Parameter defined

    A boolean constant.

  • Sets the defined accessor to the specified function and returns this radial area generator.

    The default accessor for defined returns a constant boolean value of true, thus assumes that the input data is always defined.

    When a radial area is generated, the defined accessor will be invoked for each element in the input data array, being passed the element d, the index i, and the array data as three arguments. If the given element is defined (i.e., if the defined accessor returns a truthy value for this element), the startAngle, endAngle, innerRadius and outerRadius accessors will subsequently be evaluated and the point will be added to the current area segment.

    Otherwise, the element will be skipped, the current area segment will be ended, and a new area segment will be generated for the next defined point. As a result, the generated area may have several discrete segments.

    Note that if an area segment consists of only a single point, it may appear invisible unless rendered with rounded or square line caps. In addition, some curves such as curveCardinalOpen only render a visible segment if it contains multiple points.

    Parameter defined

    An accessor function which returns a boolean value. The accessor will be invoked for each defined element in the input data array, being passed the element d, the index i, and the array data as three arguments.

method endAngle

endAngle: {
(): (d: Datum, index: number, data: Datum[]) => number;
(angle: number): this;
(angle: (d: Datum, index: number, data: Datum[]) => number): this;
};
  • Returns the current endAngle accessor, which defaults to null, indicating that the previously-computed startAngle value should be reused for the endAngle value.

  • 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.

  • Sets endAngle to the specified function and returns this radial area generator.

    The default endAngle accessor is null, indicating that the previously-computed startAngle value should be reused for the endAngle value. If your data are in a different format, or if you wish to transform the data before rendering, then you should specify a custom accessor.

    Parameter angle

    An accessor function returning a value to be used for endAngle in radians with 0 at -y (12 o’clock). The accessor will be invoked for each defined element in the input data array, being passed the element d, the index i, and the array data as three arguments.

method innerRadius

innerRadius: {
(): (d: Datum, index: number, data: Datum[]) => number;
(radius: number): this;
(radius: (d: Datum, index: number, data: Datum[]) => number): this;
};
  • Returns the current innerRadius accessor. The default innerRadius accessor is a function a constant value of zero.

  • Sets innerRadius to a constant number and returns this radial area generator.

    Parameter radius

    A constant value.

  • Sets innerRadius to the specified function and returns this radial area generator.

    The default innerRadius accessor is a function which returns a constant value of zero. If your data are in a different format, or if you wish to transform the data before rendering, then you should specify a custom accessor.

    Parameter radius

    An accessor function returning a value to be used for innerRadius. The accessor will be invoked for each defined element in the input data array, being passed the element d, the index i, and the array data as three arguments.

method lineEndAngle

lineEndAngle: () => LineRadial<Datum>;
  • Returns a new radial line generator that has this radial area generator’s current defined accessor, curve and context. The line’s angle accessor is this area’s end angle accessor, and the line’s radius accessor is this area’s inner radius accessor.

method lineInnerRadius

lineInnerRadius: () => LineRadial<Datum>;
  • Returns a new radial line generator that has this radial area generator’s current defined accessor, curve and context. The line’s angle accessor is this area’s start angle accessor, and the line’s radius accessor is this area’s inner radius accessor.

method lineOuterRadius

lineOuterRadius: () => LineRadial<Datum>;
  • Returns a new radial line generator that has this radial area generator’s current defined accessor, curve and context. The line’s angle accessor is this area’s start angle accessor, and the line’s radius accessor is this area’s outer radius accessor.

method lineStartAngle

lineStartAngle: () => LineRadial<Datum>;
  • Returns a new radial line generator that has this radial area generator’s current defined accessor, curve and context. The line’s angle accessor is this area’s start angle accessor, and the line’s radius accessor is this area’s inner radius accessor.

method outerRadius

outerRadius: {
(): (d: Datum, index: number, data: Datum[]) => number;
(radius: number): this;
(radius: (d: Datum, index: number, data: Datum[]) => number): this;
};
  • Returns the current outerRadius accessor or null. The default outerRadius accessor is a function returning the second element of a two-element array of numbers.

    If the outerRadius accessor is null, the previously-computed innerRadius value is reused for the outerRadius value.

  • Equivalent to area.y1, except the accessor returns the radius: the distance from the origin ⟨0,0⟩.

  • Sets outerRadius to the specified function and returns this radial area generator.

    The default outerRadius accessor assumes that the input data are two-element arrays of numbers and returns the second element. If your data are in a different format, or if you wish to transform the data before rendering, then you should specify a custom accessor.

    Parameter radius

    An accessor function returning a value to be used for outerRadius. The accessor will be invoked for each defined element in the input data array, being passed the element d, the index i, and the array data as three arguments.

method radius

radius: {
(): (d: Datum, index: number, data: Datum[]) => number;
(radius: number): this;
(radius: (d: Datum, index: number, data: Datum[]) => number): this;
};
  • Returns the current innerRadius accessor. The default innerRadius accessor is a function returning a constant value of zero.

  • Sets innerRadius to a constant number radius and outerRadius to null and returns this radial area generator.

    Setting outerRadius to null indicates that the previously-computed innerRadius value should be reused for the outerRadius value.

    Parameter radius

    A constant value to be used for innerRadius.

  • Sets innerRadius to the accessor function radius and outerRadius to null and returns this radial area generator.

    The default innerRadius accessor returns a constant value of zero. If your data are in a different format, or if you wish to transform the data before rendering, then you should specify a custom accessor.

    Parameter radius

    An accessor function returning a value to be used for innerRadius. The accessor will be invoked for each defined element in the input data array, being passed the element d, the index i, and the array data as three arguments.

method startAngle

startAngle: {
(): (d: Datum, index: number, data: Datum[]) => number;
(angle: number): this;
(angle: (d: Datum, index: number, data: Datum[]) => number): this;
};
  • Returns the current startAngle accessor. The default startAngle accessor is a function returning the first element of a two-element array of numbers.

  • Sets startAngle to a constant number and returns this radial area generator.

    Parameter angle

    A constant value in radians with 0 at -y (12 o’clock).

  • Sets startAngle to the specified function and returns this radial area generator.

    The default startAngle accessor assumes that the input data are two-element arrays of numbers and returns the first element. If your data are in a different format, or if you wish to transform the data before rendering, then you should specify a custom accessor.

    Parameter angle

    An accessor function returning a value to be used for startAngle in radians with 0 at -y (12 o’clock). The accessor will be invoked for each defined element in the input data array, being passed the element d, the index i, and the array data as three arguments.

call signature

(data: Iterable<Datum> | Datum[]): string | null;
  • Generates a radial area for the given array of data.

    IMPORTANT: If the rendering context of the radial area generator is null, then the radial area is returned as a path data string.

    Parameter data

    Array of data elements.

call signature

(data: Iterable<Datum> | Datum[]): void;
  • Generates a radial area for the given array of data.

    IMPORTANT: If the radial area generator has been configured with a rendering context, then the radial area is rendered to this context as a sequence of path method calls and this function returns void.

    Parameter data

    Array of data elements.

interface CanvasPath_D3Shape

interface CanvasPath_D3Shape {}
  • Deprecated

    This interface is used to bridge the gap between two incompatible versions of TypeScript (see [#25944](https://github.com/Microsoft/TypeScript/pull/25944)). Use CanvasPathMethods instead with TS <= 3.0 and CanvasPath with TS >= 3.1.

method arc

arc: (
x: number,
y: number,
radius: number,
startAngle: number,
endAngle: number,
anticlockwise?: boolean
) => void;

    method arcTo

    arcTo: (x1: number, y1: number, x2: number, y2: number, radius: number) => void;

      method bezierCurveTo

      bezierCurveTo: (
      cp1x: number,
      cp1y: number,
      cp2x: number,
      cp2y: number,
      x: number,
      y: number
      ) => void;

        method closePath

        closePath: () => void;

          method ellipse

          ellipse: (
          x: number,
          y: number,
          radiusX: number,
          radiusY: number,
          rotation: number,
          startAngle: number,
          endAngle: number,
          anticlockwise?: boolean
          ) => void;

            method lineTo

            lineTo: (x: number, y: number) => void;

              method moveTo

              moveTo: (x: number, y: number) => void;

                method quadraticCurveTo

                quadraticCurveTo: (cpx: number, cpy: number, x: number, y: number) => void;

                  method rect

                  rect: (x: number, y: number, w: number, h: number) => void;

                    interface CurveBundleFactory

                    interface CurveBundleFactory extends CurveFactoryLineOnly {}
                    • A curve factory for straightened cubic basis spline generators.

                      The curve generators produce a straightened cubic basis spline using the specified control points, with the spline straightened according to the curve’s beta, which defaults to 0.85. This curve is typically used in hierarchical edge bundling to disambiguate connections, as proposed by Danny Holten in Hierarchical Edge Bundles: Visualization of Adjacency Relations in Hierarchical Data.

                      This curve does not implement curve.areaStart and curve.areaEnd; it is intended to work with d3.line, not d3.area.

                    method beta

                    beta: (beta: number) => this;
                    • Returns a bundle curve factory with the specified beta in the range [0, 1], representing the bundle strength. If beta equals zero, a straight line between the first and last point is produced; if beta equals one, a standard basis spline is produced.

                      Parameter beta

                      A constant value in the [0, 1] interval.

                    interface CurveCardinalFactory

                    interface CurveCardinalFactory extends CurveFactory {}
                    • A curve factory for cubic cardinal spline generators.

                    method tension

                    tension: (tension: number) => this;
                    • Returns a cardinal curve factory with the specified tension in the range [0, 1]. The tension determines the length of the tangents: a tension of one yields all zero tangents, equivalent to curveLinear; a tension of zero produces a uniform Catmull–Rom spline.

                      Parameter tension

                      A constant in the [0, 1] interval.

                    interface CurveCatmullRomFactory

                    interface CurveCatmullRomFactory extends CurveFactory {}
                    • A curve factory for cubic Catmull–Rom spline generators.

                    method alpha

                    alpha: (alpha: number) => this;
                    • Returns a cubic Catmull–Rom curve factory with the specified alpha in the range [0, 1]. If alpha is zero, produces a uniform spline, equivalent to curveCardinal with a tension of zero; if alpha is one, produces a chordal spline; if alpha is 0.5, produces a centripetal spline. Centripetal splines are recommended to avoid self-intersections and overshoot.

                      Parameter alpha

                      A constant in the [0, 1] interval.

                    interface CurveGenerator

                    interface CurveGenerator extends CurveGeneratorLineOnly {}
                    • A minimal interface for a curve generator which supports the rendering of lines and areas.

                      While lines are defined as a sequence of two-dimensional [x, y] points, and areas are similarly defined by a topline and a baseline, there remains the task of transforming this discrete representation into a continuous shape: i.e., how to interpolate between the points. A curve generator serves this purpose.

                      Curves are typically not constructed or used directly, instead being passed to line.curve and area.curve.

                    method areaEnd

                    areaEnd: () => void;
                    • Indicates the end of the current area segment.

                    method areaStart

                    areaStart: () => void;
                    • 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.

                    interface CurveGeneratorLineOnly

                    interface CurveGeneratorLineOnly {}
                    • A minimal interface for a curve generator which supports only the rendering of lines. Methods for related to the rendering of areas are not implemented in this minimal interface.

                      While lines are defined as a sequence of two-dimensional [x, y] points, there remains the task of transforming this discrete representation into a continuous shape: i.e., how to interpolate between the points. A curve generator serves this purpose.

                      Curves are typically not constructed or used directly, instead being passed to line.curve.

                    method lineEnd

                    lineEnd: () => void;
                    • Indicates the end of the current line segment.

                    method lineStart

                    lineStart: () => void;
                    • Indicates the start of a new line segment. Zero or more points will follow.

                    method point

                    point: (x: number, y: number) => void;
                    • Indicates a new point in the current line segment with the given x- and y-values.

                    interface DefaultArcObject

                    interface DefaultArcObject {}
                    • Interface corresponding to the minimum data type assumed by the accessor functions of the Arc generator.

                    property endAngle

                    endAngle: number;
                    • End angle of arc. The angle is specified in radians, with 0 at -y (12 o’clock) and positive angles proceeding clockwise.

                    property innerRadius

                    innerRadius: number;
                    • Inner radius of arc.

                    property outerRadius

                    outerRadius: number;
                    • Outer radius of arc.

                    property padAngle

                    padAngle?: number | undefined;
                    • Optional. Pad angle of arc in radians.

                    property startAngle

                    startAngle: number;
                    • Start angle of arc. The angle is specified in radians, with 0 at -y (12 o’clock) and positive angles proceeding clockwise.

                    interface DefaultLinkObject

                    interface DefaultLinkObject {}
                    • An interface describing the default Link Data structure expected by the Link and LinkRadial generators.

                    property source

                    source: [number, number];
                    • Source node of the link.

                      For a link in a Cartesian coordinate system, the two element array contains the coordinates [x, y].

                      For a radial link, the two element array contains the coordinates [angle, radius]. The angle is stated in radians, with 0 at -y (12 o’clock). The radius measures the distance from the origin ⟨0,0⟩.

                    property target

                    target: [number, number];
                    • Target node of the link.

                      For a link in a Cartesian coordinate system, the two element array contains the coordinates [x, y].

                      For a radial link, the two element array contains the coordinates [angle, radius]. The angle is stated in radians, with 0 at -y (12 o’clock). The radius measures the distance from the origin ⟨0,0⟩.

                    interface Line

                    interface Line<Datum> {}
                    • The line generator produces a spline or polyline, as in a line chart. Lines also appear in many other visualization types, such as the links in hierarchical edge bundling.

                      The generic refers to the data type of an element in the input array passed into the line generator.

                    method context

                    context: {
                    (): CanvasRenderingContext2D | null;
                    (context: CanvasRenderingContext2D): this;
                    };
                    • Returns the current rendering context, which defaults to null.

                    • Sets the context and returns this line generator.

                    method curve

                    curve: {
                    (): CurveFactory | CurveFactoryLineOnly;
                    <C extends CurveFactory | CurveFactoryLineOnly>(): C;
                    (curve: CurveFactory | CurveFactoryLineOnly): this;
                    };
                    • Returns the current curve factory, which defaults to curveLinear.

                    • Returns the current curve factory, which defaults to curveLinear.

                      The generic allows to cast the curve factory to a specific type, if known.

                    • Sets the curve factory and returns this line generator.

                      Parameter curve

                      A valid curve factory.

                    method defined

                    defined: {
                    (): (d: Datum, index: number, data: Datum[]) => boolean;
                    (defined: boolean): this;
                    (defined: (d: Datum, index: number, data: Datum[]) => boolean): this;
                    };
                    • Returns the current defined accessor, which defaults to a function returning a constant boolean value of true.

                    • Sets the defined accessor to the specified boolean and returns this line generator.

                      The default accessor for defined returns a constant boolean value of true, thus assumes that the input data is always defined.

                      When a line is generated, the defined accessor will be invoked for each element in the input data array, being passed the element d, the index i, and the array data as three arguments. If the given element is defined (i.e., if the defined accessor returns a truthy value for this element), the x and y accessors will subsequently be evaluated and the point will be added to the current line segment. Otherwise, the element will be skipped, the current line segment will be ended, and a new line segment will be generated for the next defined point. As a result, the generated line may have several discrete segments.

                      Note that if a line segment consists of only a single point, it may appear invisible unless rendered with rounded or square line caps. In addition, some curves such as curveCardinalOpen only render a visible segment if it contains multiple points.

                      Parameter defined

                      A boolean constant.

                    • Sets the defined accessor to the specified function and returns this line generator.

                      The default accessor for defined returns a constant boolean value of true, thus assumes that the input data is always defined.

                      When a line is generated, the defined accessor will be invoked for each element in the input data array, being passed the element d, the index i, and the array data as three arguments. If the given element is defined (i.e., if the defined accessor returns a truthy value for this element), the x and y accessors will subsequently be evaluated and the point will be added to the current line segment. Otherwise, the element will be skipped, the current line segment will be ended, and a new line segment will be generated for the next defined point. As a result, the generated line may have several discrete segments.

                      Note that if a line segment consists of only a single point, it may appear invisible unless rendered with rounded or square line caps. In addition, some curves such as curveCardinalOpen only render a visible segment if it contains multiple points.

                      Parameter defined

                      An accessor function which returns a boolean value. The accessor will be invoked for each defined element in the input data array, being passed the element d, the index i, and the array data as three arguments.

                    method x

                    x: {
                    (): (d: Datum, index: number, data: Datum[]) => number;
                    (x: number): this;
                    (x: (d: Datum, index: number, data: Datum[]) => number): this;
                    };
                    • Returns the current x-coordinate accessor function, which defaults to a function returning first element of a two-element array of numbers.

                    • Sets the x accessor to the specified number and returns this line generator.

                      Parameter x

                      A constant x-coordinate value.

                    • Sets the x accessor to the specified function and returns this line generator.

                      When a line is generated, the x accessor will be invoked for each defined element in the input data array.

                      The default x accessor assumes that the input data are two-element arrays of numbers. If your data are in a different format, or if you wish to transform the data before rendering, then you should specify a custom accessor.

                      Parameter x

                      A coordinate accessor function which returns the x-coordinate value. The x accessor will be invoked for each defined element in the input data array, being passed the element d, the index i, and the array data as three arguments.

                    method y

                    y: {
                    (): (d: Datum, index: number, data: Datum[]) => number;
                    (y: number): this;
                    (y: (d: Datum, index: number, data: Datum[]) => number): this;
                    };
                    • Returns the current y-coordinate accessor function, which defaults to a function returning second element of a two-element array of numbers.

                    • Sets the y accessor to the specified number and returns this line generator.

                      Parameter y

                      A constant y-coordinate value.

                    • Sets the y accessor to the specified function and returns this line generator.

                      When a line is generated, the y accessor will be invoked for each defined element in the input data array.

                      The default y accessor assumes that the input data are two-element arrays of numbers. If your data are in a different format, or if you wish to transform the data before rendering, then you should specify a custom accessor.

                      Parameter y

                      A coordinate accessor function which returns the y-coordinate value. The y accessor will be invoked for each defined element in the input data array, being passed the element d, the index i, and the array data as three arguments.

                    call signature

                    (data: Iterable<Datum> | Datum[]): string | null;
                    • Generates a line for the given array of data. Depending on this line generator’s associated curve, the given input data may need to be sorted by x-value before being passed to the line generator.

                      IMPORTANT: If the rendering context of the line generator is null, then the line is returned as a path data string.

                      Parameter data

                      Array of data elements.

                    call signature

                    (data: Iterable<Datum> | Datum[]): void;
                    • Generates a line for the given array of data. Depending on this line generator’s associated curve, the given input data may need to be sorted by x-value before being passed to the line generator.

                      IMPORTANT: If the line generator has been configured with a rendering context, then the line is rendered to this context as a sequence of path method calls and this function returns void.

                      Parameter data

                      Array of data elements.

                    interface LineRadial

                    interface LineRadial<Datum> {}
                    • The radial line generator produces a spline or polyline, as in a line chart.

                      A radial line generator is equivalent to the standard Cartesian line generator, except the x and y accessors are replaced with angle and radius accessors. Radial lines are always positioned relative to ⟨0,0⟩; use a transform (see: SVG, Canvas) to change the origin.

                      The generic refers to the data type of an element in the input array passed into the line generator.

                    method angle

                    angle: {
                    (): (d: Datum, index: number, data: Datum[]) => number;
                    (angle: number): this;
                    (angle: (d: Datum, index: number, data: Datum[]) => number): this;
                    };
                    • Returns the current angle accessor function, which defaults to a function returning first element of a two-element array of numbers.

                    • Sets the angle accessor to the specified number and returns this radial line generator.

                      Parameter angle

                      A constant angle value in radians, with 0 at -y (12 o’clock).

                    • Sets the angle accessor to the specified function and returns this radial line generator.

                      When a radial line is generated, the angle accessor will be invoked for each defined element in the input data array.

                      The default angle accessor assumes that the input data are two-element arrays of numbers. If your data are in a different format, or if you wish to transform the data before rendering, then you should specify a custom accessor.

                      Parameter angle

                      An angle accessor function which returns the angle value in radians, with 0 at -y (12 o’clock). The angle accessor will be invoked for each defined element in the input data array, being passed the element d, the index i, and the array data as three arguments.

                    method context

                    context: {
                    (): CanvasRenderingContext2D | null;
                    (context: CanvasRenderingContext2D): this;
                    };
                    • Returns the current rendering context, which defaults to null.

                    • Equivalent to line.context.

                    method curve

                    curve: {
                    (): CurveFactory | CurveFactoryLineOnly;
                    <C extends CurveFactory | CurveFactoryLineOnly>(): C;
                    (curve: CurveFactory | CurveFactoryLineOnly): this;
                    };
                    • Returns the current curve factory, which defaults to curveLinear.

                    • Returns the current curve factory, which defaults to curveLinear.

                      The generic allows to cast the curve factory to a specific type, if known.

                    • Sets the curve factory and returns this radial line generator.

                      Note that curveMonotoneX or curveMonotoneY are not recommended for radial lines because they assume that the data is monotonic in x or y, which is typically untrue of radial lines.

                      Parameter curve

                      A valid curve factory.

                    method defined

                    defined: {
                    (): (d: Datum, index: number, data: Datum[]) => boolean;
                    (defined: boolean): this;
                    (defined: (d: Datum, index: number, data: Datum[]) => boolean): this;
                    };
                    • Returns the current defined accessor, which defaults to a function returning a constant boolean value of true.

                    • Sets the defined accessor to the specified boolean and returns this radial line generator.

                      The default accessor for defined returns a constant boolean value of true, thus assumes that the input data is always defined.

                      When a radial line is generated, the defined accessor will be invoked for each element in the input data array, being passed the element d, the index i, and the array data as three arguments. If the given element is defined (i.e., if the defined accessor returns a truthy value for this element), the angle and radius accessors will subsequently be evaluated and the point will be added to the current radial line segment. Otherwise, the element will be skipped, the current radial line segment will be ended, and a new radial line segment will be generated for the next defined point. As a result, the generated radial line may have several discrete segments.

                      Note that if a radial line segment consists of only a single point, it may appear invisible unless rendered with rounded or square line caps. In addition, some curves such as curveCardinalOpen only render a visible segment if it contains multiple points.

                      Parameter defined

                      A boolean constant.

                    • Sets the defined accessor to the specified function and returns this radial line generator.

                      The default accessor for defined returns a constant boolean value of true, thus assumes that the input data is always defined.

                      When a radial line is generated, the defined accessor will be invoked for each element in the input data array, being passed the element d, the index i, and the array data as three arguments. If the given element is defined (i.e., if the defined accessor returns a truthy value for this element), the angle and radius accessors will subsequently be evaluated and the point will be added to the current radial line segment. Otherwise, the element will be skipped, the current radial line segment will be ended, and a new radial line segment will be generated for the next defined point. As a result, the generated radial line may have several discrete segments.

                      Note that if a radial line segment consists of only a single point, it may appear invisible unless rendered with rounded or square line caps. In addition, some curves such as curveCardinalOpen only render a visible segment if it contains multiple points.

                      Parameter defined

                      An accessor function which returns a boolean value. The accessor will be invoked for each defined element in the input data array, being passed the element d, the index i, and the array data as three arguments.

                    method radius

                    radius: {
                    (): (d: Datum, index: number, data: Datum[]) => number;
                    (radius: number): this;
                    (radius: (d: Datum, index: number, data: Datum[]) => number): this;
                    };
                    • Returns the current radius accessor function, which defaults to a function returning second element of a two-element array of numbers.

                    • Sets the radius accessor to the specified number and returns this radial line generator.

                      Parameter radius

                      A constant radius value.

                    • Sets the radius accessor to the specified function and returns this radial line generator.

                      When a radial line is generated, the radius accessor will be invoked for each defined element in the input data array.

                      The default radius accessor assumes that the input data are two-element arrays of numbers. If your data are in a different format, or if you wish to transform the data before rendering, then you should specify a custom accessor.

                      Parameter radius

                      A radius accessor function which returns the radius value. The radius accessor will be invoked for each defined element in the input data array, being passed the element d, the index i, and the array data as three arguments.

                    call signature

                    (data: Iterable<Datum> | Datum[]): string | null;
                    • Generates a radial line for the given array of data. Depending on this radial line generator’s associated curve, the given input data may need to be sorted by x-value before being passed to the line generator.

                      IMPORTANT: If the rendering context of the radial line generator is null, then the radial line is returned as a path data string.

                      Parameter data

                      Array of data elements.

                    call signature

                    (data: Iterable<Datum> | Datum[]): void;
                    • Generates a radial line for the given array of data. Depending on this radial line generator’s associated curve, the given input data may need to be sorted by x-value before being passed to the radial line generator.

                      IMPORTANT: If the radial line generator has been configured with a rendering context, then the radial line is rendered to this context as a sequence of path method calls and this function returns void.

                      Parameter data

                      Array of data elements.

                    interface Link<This, LinkDatum, NodeDatum> {}
                    • A link generator for a Cartesian coordinate system. The link shape generates a smooth cubic Bézier curve from a source point to a target point. The tangents of the curve at the start and end are either vertical, horizontal.

                      The first generic corresponds to the type of the "this" context within which the link generator and its accessor functions will be invoked.

                      The second generic corresponds to the datum type of the link object for which the link is to be generated.

                      The third generic corresponds to the datum type of the source/target node contained in the link object.

                    method context

                    context: {
                    (): CanvasRenderingContext2D | null;
                    (context: CanvasRenderingContext2D): this;
                    };
                    • Returns the current rendering context, which defaults to null.

                    • Sets the context and returns this link generator.

                    method source

                    source: {
                    (): (this: This, d: LinkDatum, ...args: any[]) => NodeDatum;
                    (source: (this: This, d: LinkDatum, ...args: any[]) => NodeDatum): this;
                    };
                    • Returns the current source node accessor function. The default source accessor function returns a two element array [x, y].

                    • Sets the source accessor to the specified function and returns this link generator.

                      Parameter source

                      Source node accessor function. The accessor function is invoked in the same "this" context as the generator was invoked in and receives the same arguments that were passed into the link generator. The default target accessor function returns a two element array [x, y].

                    method target

                    target: {
                    (): (this: This, d: LinkDatum, ...args: any[]) => NodeDatum;
                    (target: (this: This, d: LinkDatum, ...args: any[]) => NodeDatum): this;
                    };
                    • Returns the current target node accessor function. The default target accessor function returns a two element array [x, y].

                    • Sets the target accessor to the specified function and returns this link generator.

                      Parameter target

                      Target node accessor function. The accessor function is invoked in the same "this" context as the generator was invoked in and receives the same arguments that were passed into the link generator. The default target accessor function returns a two element array [x, y].

                    method x

                    x: {
                    (): (this: This, node: NodeDatum, ...args: any[]) => number;
                    (x: (this: This, node: NodeDatum, ...args: any[]) => number): this;
                    };
                    • Returns the current x-accessor, which defaults to a function accepting an number array as its argument an returning the first element of the array.

                    • Sets the x-accessor to the specified function and returns this link generator.

                      Parameter x

                      x-coordinate accessor function. The accessor function is invoked in the same "this" context as the generator was invoked in and receives as its first argument a node object followed by all additional arguments that were passed into the link generator.

                    method y

                    y: {
                    (): (this: This, node: NodeDatum, ...args: any[]) => number;
                    (y: (this: This, node: NodeDatum, ...args: any[]) => number): this;
                    };
                    • Returns the current y-accessor, which defaults to a function accepting an number array as its argument an returning the second element of the array.

                    • Sets the y-accessor to the specified function and returns this link generator.

                      Parameter y

                      y-coordinate accessor function. The accessor function is invoked in the same "this" context as the generator was invoked in and receives as its first argument a node object followed by all additional arguments that were passed into the link generator.

                    call signature

                    (this: This, d: LinkDatum, ...args: any[]): string | null;
                    • Generates a link for the given arguments.

                      IMPORTANT: If the rendering context of the link generator is null, then the link is returned as a path data string.

                      The "this" context within which this function is invoked, will be the context within which the accessor methods of the generator are invoked. All arguments passed into this function, will be passed to the accessor functions of the generator.

                      Parameter d

                      The datum for which the link is to be generated.

                    call signature

                    (this: This, d: LinkDatum, ...args: any[]): void;
                    • Generates an link for the given arguments.

                      IMPORTANT: If the link generator has been configured with a rendering context, then the link is rendered to this context as a sequence of path method calls and this function returns void.

                      The "this" context within which this function is invoked, will be the context within which the accessor methods of the generator are invoked. All arguments passed into this function, will be passed to the accessor functions of the generator.

                      Parameter d

                      The datum for which the link is to be generated.

                    interface LinkRadial

                    interface LinkRadial<This, LinkDatum, NodeDatum> {}
                    • Shorthand for d3.link with d3.curveBumpY; suitable for visualizing links in a tree diagram rooted on the top edge of the display.

                      The first generic corresponds to the type of the "this" context within which the radial link generator and its accessor functions will be invoked.

                      The second generic corresponds to the datum type of the link object for which the link is to be generated.

                      The third generic corresponds to the datum type of the source/target node contained in the link object.

                    method angle

                    angle: {
                    (): (this: This, node: NodeDatum, ...args: any[]) => number;
                    (angle: (this: This, node: NodeDatum, ...args: any[]) => number): this;
                    };
                    • Returns the current angle accessor, which defaults to a function accepting an number array as its argument an returning the first element of the array.

                    • Sets the angle accessor to the specified function and returns this radial link generator. The angle is stated in radians, with 0 at -y (12 o’clock).

                      Parameter angle

                      Angle accessor function. The accessor function is invoked in the same "this" context as the generator was invoked in and receives as its first argument a node object followed by all additional arguments that were passed into the radial link generator.

                    method context

                    context: {
                    (): CanvasRenderingContext2D | null;
                    (context: CanvasRenderingContext2D): this;
                    };
                    • Returns the current rendering context, which defaults to null.

                    • Sets the context and returns this link generator.

                    method radius

                    radius: {
                    (): (this: This, node: NodeDatum, ...args: any[]) => number;
                    (radius: (this: This, node: NodeDatum, ...args: any[]) => number): this;
                    };
                    • Returns the current radius accessor, which defaults to a function accepting an number array as its argument an returning the second element of the array.

                    • Sets the radius accessor to the specified function and returns this radial link generator. The radius is measured as the distance from the origin ⟨0,0⟩.

                      Parameter radius

                      Radius accessor function. The accessor function is invoked in the same "this" context as the generator was invoked in and receives as its first argument a node object followed by all additional arguments that were passed into the radial link generator.

                    method source

                    source: {
                    (): (this: This, d: LinkDatum, ...args: any[]) => NodeDatum;
                    (source: (this: This, d: LinkDatum, ...args: any[]) => NodeDatum): this;
                    };
                    • Returns the current source node accessor function. The default source accessor function returns a two element array [x, y].

                    • Sets the source accessor to the specified function and returns this radial link generator.

                      Parameter source

                      Source node accessor function. The accessor function is invoked in the same "this" context as the generator was invoked in and receives the same arguments that were passed into the radial link generator. The default target accessor function returns a two element array [x, y].

                    method target

                    target: {
                    (): (this: This, d: LinkDatum, ...args: any[]) => NodeDatum;
                    (target: (this: This, d: LinkDatum, ...args: any[]) => NodeDatum): this;
                    };
                    • Returns the current target node accessor function. The default target accessor function returns a two element array [x, y].

                    • Sets the target accessor to the specified function and returns this radial link generator.

                      Parameter target

                      Target node accessor function. The accessor function is invoked in the same "this" context as the generator was invoked in and receives the same arguments that were passed into the radial link generator. The default target accessor function returns a two element array [x, y].

                    call signature

                    (this: This, d: LinkDatum, ...args: any[]): string | null;
                    • Generates a radial link for the given arguments.

                      IMPORTANT: If the rendering context of the radial link generator is null, then the link is returned as a path data string.

                      The "this" context within which this function is invoked, will be the context within which the accessor methods of the generator are invoked. All arguments passed into this function, will be passed to the accessor functions of the generator.

                      Parameter d

                      The datum for which the link is to be generated.

                    call signature

                    (this: This, d: LinkDatum, ...args: any[]): void;
                    • Generates an link for the given arguments.

                      IMPORTANT: If the radial link generator has been configured with a rendering context, then the link is rendered to this context as a sequence of path method calls and this function returns void.

                      The "this" context within which this function is invoked, will be the context within which the accessor methods of the generator are invoked. All arguments passed into this function, will be passed to the accessor functions of the generator.

                      Parameter d

                      The datum for which the link is to be generated.

                    interface Pie

                    interface Pie<This, Datum> {}
                    • The pie generator does not produce a shape directly, but instead computes the necessary angles to represent a tabular dataset as a pie or donut chart; these angles can then be passed to an arc generator.

                      The first generic corresponds to the type of the "this" context within which the pie generator and its accessor functions will be invoked.

                      The second generic refers to the data type of an element in the input array passed into the Pie generator.

                    method endAngle

                    endAngle: {
                    (): (this: This, data: Datum[], ...args: any[]) => number;
                    (angle: number): this;
                    (angle: (this: This, data: Datum[], ...args: any[]) => number): this;
                    };
                    • Returns the current end angle accessor, which defaults to a function returning a constant 2*pi.

                    • Sets the overall end angle of the pie to the specified number and returns this pie generator.

                      The default end angle is 2*pi.

                      The end angle here means the overall end angle of the pie, i.e., the end angle of the last arc. The units of angle are arbitrary, but if you plan to use the pie generator in conjunction with an arc generator, you should specify an angle in radians, with 0 at -y (12 o’clock) and positive angles proceeding clockwise.

                      The value of the end angle is constrained to startAngle ± τ, such that |endAngle - startAngle| ≤ τ.

                      Parameter angle

                      A constant angle.

                    • Sets the overall end angle of the pie to the specified function and returns this pie generator.

                      The default end angle is 2*pi.

                      The end angle here means the overall end angle of the pie, i.e., the end angle of the last arc. The end angle accessor is invoked once, being passed the same arguments and this context as the pie generator. The units of angle are arbitrary, but if you plan to use the pie generator in conjunction with an arc generator, you should specify an angle in radians, with 0 at -y (12 o’clock) and positive angles proceeding clockwise.

                      The value of the end angle is constrained to startAngle ± τ, such that |endAngle - startAngle| ≤ τ.

                      Parameter angle

                      An angle accessor function, which is invoked once, being passed the same arguments and this context as the pie generator.

                    method padAngle

                    padAngle: {
                    (): (this: This, data: Datum[], ...args: any[]) => number;
                    (angle: number): this;
                    (angle: (this: This, data: Datum[], ...args: any[]) => number): this;
                    };
                    • Returns the current pad angle accessor, which defaults to a function returning a constant zero.

                    • Sets the pad angle to the specified number and returns this pie generator.

                      The pad angle here means the angular separation between each adjacent arc. The total amount of padding reserved is the specified angle times the number of elements in the input data array, and at most |endAngle - startAngle|; the remaining space is then divided proportionally by value such that the relative area of each arc is preserved. The units of angle are arbitrary, but if you plan to use the pie generator in conjunction with an arc generator, you should specify an angle in radians.

                      Parameter angle

                      A constant angle.

                    • Sets the pad angle to the specified function and returns this pie generator.

                      The pad angle here means the angular separation between each adjacent arc. The total amount of padding reserved is the specified angle times the number of elements in the input data array, and at most |endAngle - startAngle|; the remaining space is then divided proportionally by value such that the relative area of each arc is preserved. The pad angle accessor is invoked once, being passed the same arguments and this context as the pie generator. The units of angle are arbitrary, but if you plan to use the pie generator in conjunction with an arc generator, you should specify an angle in radians.

                      Parameter angle

                      An angle accessor function, which is invoked once, being passed the same arguments and this context as the pie generator.

                    method sort

                    sort: {
                    (): (a: Datum, b: Datum) => number;
                    (comparator: (a: Datum, b: Datum) => number): this;
                    (comparator: null): this;
                    };
                    • Returns the current data comparator, which defaults to null.

                    • Sets the data comparator to the specified function and returns this pie generator.

                      If both the data comparator and the value comparator are null, then arcs are positioned in the original input order. Otherwise, the data is sorted according to the data comparator, and the resulting order is used. Setting the data comparator implicitly sets the value comparator to null.

                      Sorting does not affect the order of the generated arc array which is always in the same order as the input data array; it merely affects the computed angles of each arc. The first arc starts at the start angle and the last arc ends at the end angle.

                      Parameter comparator

                      A compare function takes two arguments a and b, each elements from the input data array. If the arc for a should be before the arc for b, then the comparator must return a number less than zero; if the arc for a should be after the arc for b, then the comparator must return a number greater than zero; returning zero means that the relative order of a and b is unspecified.

                    • Sets the data comparator to null and returns this pie generator.

                      If both the data comparator and the value comparator are null, then arcs are positioned in the original input order.

                      Parameter comparator

                      null, to set the pie generator to use the original input order or use the sortValues comparator, if any.

                    method sortValues

                    sortValues: {
                    (): (a: number, b: number) => number;
                    (comparator: (a: number, b: number) => number): this;
                    };
                    • Returns the current value comparator, which defaults to descending value.

                    • Sets the value comparator to the specified function and returns this pie generator.

                      If both the data comparator and the value comparator are null, then arcs are positioned in the original input order. Otherwise, the data is sorted according to the data comparator, and the resulting order is used. Setting the value comparator implicitly sets the data comparator to null.

                      The value comparator is similar to the data comparator, except the two arguments a and b are values derived from the input data array using the value accessor, not the data elements. If the arc for a should be before the arc for b, then the comparator must return a number less than zero; if the arc for a should be after the arc for b, then the comparator must return a number greater than zero; returning zero means that the relative order of a and b is unspecified.

                    method startAngle

                    startAngle: {
                    (): (this: This, data: Datum[], ...args: any[]) => number;
                    (angle: number): this;
                    (angle: (this: This, data: Datum[], ...args: any[]) => number): this;
                    };
                    • Returns the current start angle accessor, which defaults to a function returning a constant zero.

                    • Sets the overall start angle of the pie to the specified number and returns this pie generator.

                      The default start angle is zero.

                      The start angle here means the overall start angle of the pie, i.e., the start angle of the first arc. The start angle accessor is invoked once, being passed the same arguments and this context as the pie generator. The units of angle are arbitrary, but if you plan to use the pie generator in conjunction with an arc generator, you should specify an angle in radians, with 0 at -y (12 o’clock) and positive angles proceeding clockwise.

                      Parameter angle

                      A constant angle.

                    • Sets the overall start angle of the pie to the specified function and returns this pie generator.

                      The default start angle is zero.

                      The start angle here means the overall start angle of the pie, i.e., the start angle of the first arc. The start angle accessor is invoked once, being passed the same arguments and this context as the pie generator. The units of angle are arbitrary, but if you plan to use the pie generator in conjunction with an arc generator, you should specify an angle in radians, with 0 at -y (12 o’clock) and positive angles proceeding clockwise.

                      Parameter angle

                      An angle accessor function, which is invoked once, being passed the same arguments and this context as the pie generator.

                    method value

                    value: {
                    (): (d: Datum, i: number, data: Datum[]) => number;
                    (value: number): this;
                    (value: (d: Datum, i: number, data: Datum[]) => number): this;
                    };
                    • Returns the current value accessor, which defaults to a function returning the first argument passed into it. The default value accessor assumes that the input data are numbers, or that they are coercible to numbers using valueOf.

                    • Sets the value accessor to use the specified constant number and returns this pie generator.

                      Parameter value

                      Constant value to be used.

                    • Sets the value accessor to use the specified function and returns this pie generator.

                      When a pie is generated, the value accessor will be invoked for each element in the input data array. The default value accessor assumes that the input data are numbers, or that they are coercible to numbers using valueOf. If your data are not simply numbers, then you should specify an accessor that returns the corresponding numeric value for a given datum.

                      Parameter value

                      A value accessor function, which is invoked for each element in the input data array, being passed the element d, the index i, and the array data as three arguments. It returns a numeric value.

                    call signature

                    (this: This, data: Datum[], ...args: any[]): Array<PieArcDatum<Datum>>;
                    • Generates a pie for the given array of data, returning an array of objects representing each datum’s arc angles. Any additional arguments are arbitrary; they are simply propagated to the pie generator’s accessor functions along with the this object. The length of the returned array is the same as data, and each element i in the returned array corresponds to the element i in the input data.

                      This representation is designed to work with the arc generator’s default startAngle, endAngle and padAngle accessors. The angular units are arbitrary, but if you plan to use the pie generator in conjunction with an arc generator, you should specify angles in radians, with 0 at -y (12 o’clock) and positive angles proceeding clockwise.

                      Parameter data

                      Array of data elements.

                    interface PieArcDatum

                    interface PieArcDatum<T> {}
                    • Element of the Arc Datums Array created by invoking the Pie generator.

                      The generic refers to the data type of an element in the input array passed into the Pie generator.

                    property data

                    data: T;
                    • The input datum; the corresponding element in the input data array of the Pie generator.

                    property endAngle

                    endAngle: number;
                    • The end angle of the arc. If the pie generator was configured to be used for the arc generator, then the units are in radians with 0 at -y (12 o’clock) and positive angles proceeding clockwise.

                    property index

                    index: number;
                    • The zero-based sorted index of the arc.

                    property padAngle

                    padAngle: number;
                    • The pad angle of the arc. If the pie generator was configured to be used for the arc generator, than the units are in radians.

                    property startAngle

                    startAngle: number;
                    • The start angle of the arc. If the pie generator was configured to be used for the arc generator, then the units are in radians with 0 at -y (12 o’clock) and positive angles proceeding clockwise.

                    property value

                    value: number;
                    • The numeric value of the arc.

                    interface Series

                    interface Series<Datum, Key> extends Array<SeriesPoint<Datum>> {}
                    • The series are determined by the keys accessor; each series i in the returned array corresponds to the ith key. Each series is an array of points, where each point j corresponds to the jth element in the input data.

                      The key for each series is available as series.key, and the index as series.index.

                    property index

                    index: number;
                    • Index of the series in the series array returned by stack generator.

                    property key

                    key: Key;
                    • Key of the series.

                    interface SeriesPoint

                    interface SeriesPoint<Datum> extends Array<number> {}
                    • Each series point j in a stack chart corresponds to the jth element in the input data. Each point is represented as an array [y0, y1] where y0 is the lower value (baseline) and y1 is the upper value (topline); the difference between y0 and y1 corresponds to the computed value for this point.

                      SeriesPoint is a [number, number] two-element Array with added data and index properties related to the data element which formed the basis for theSeriesPoint.

                    property 0

                    0: number;
                    • Corresponds to y0, the lower value (baseline).

                    property 1

                    1: number;
                    • Corresponds to y1, the upper value (topline).

                    property data

                    data: Datum;
                    • The data element underlying the series point.

                    interface Stack

                    interface Stack<This, Datum, Key> {}
                    • A stack generator.

                      Some shape types can be stacked, placing one shape adjacent to another. For example, a bar chart of monthly sales might be broken down into a multi-series bar chart by product category, stacking bars vertically. This is equivalent to subdividing a bar chart by an ordinal dimension (such as product category) and applying a color encoding.

                      Stacked charts can show overall value and per-category value simultaneously; however, it is typically harder to compare across categories, as only the bottom layer of the stack is aligned. So, chose the stack order carefully, and consider a streamgraph. (See also grouped charts.)

                      Like the pie generator, the stack generator does not produce a shape directly. Instead it computes positions which you can then pass to an area generator or use directly, say to position bars.

                      The first generic corresponds to the "this" context in which the stack generator and its accessor functions are invoked.

                      The second generic corresponds to the data type of an element in the data array passed into the stack generator.

                      The third generic corresponds to the data type of key used to identify a series.

                    method keys

                    keys: {
                    (): (this: This, data: Datum[], ...args: any[]) => Key[];
                    (
                    keys:
                    | Iterable<Key>
                    | ((this: This, data: Datum[], ...args: any[]) => Key[])
                    ): this;
                    };
                    • Returns the current keys accessor, which defaults to the empty array.

                    • Sets the keys accessor to the specified function or array and returns this stack generator. A series (layer) is generated for each key. Keys are typically strings, but they may be arbitrary values. The series’ key is passed to the value accessor, along with each data point, to compute the point’s value.

                    method offset

                    offset: {
                    (): (series: Series<Datum, Key>, order: number[]) => void;
                    (offset: null): this;
                    (offset: (series: Series<Datum, Key>, order: number[]) => void): this;
                    };
                    • Returns the current offset accessor, which defaults to stackOffsetNone; this uses a zero baseline.

                    • Reset the offset to use stackOffsetNone; this uses a zero baseline.

                      Parameter offset

                      null to set to the default stackOffsetNone.

                    • Sets the offset accessor to the specified function and returns this stack generator.

                      Parameter offset

                      A function which is passed the generated series array and the order index array; it is then responsible for updating the lower and upper values in the series array.

                    method order

                    order: {
                    (): (series: Series<Datum, Key>) => Iterable<number>;
                    (order: Iterable<number>): this;
                    (order: (series: Series<Datum, Key>) => Iterable<number>): this;
                    };
                    • Returns the current order accessor, which defaults to stackOrderNone; this uses the order given by the key accessor.

                    • Sets the order accessor to the specified array and returns this stack generator.

                    • Sets the order accessor to the specified function and returns this stack generator.

                      The stack order is computed prior to the offset; thus, the lower value for all points is zero at the time the order is computed. The index attribute for each series is also not set until after the order is computed.

                      See stack orders for the built-in orders.

                      Parameter order

                      A function returning a sort order array. It is passed the generated series array and must return an array of numeric indexes representing the stack order.

                    method value

                    value: {
                    (): (d: Datum, key: Key, i: number, data: Datum[]) => number;
                    (value: number): this;
                    (value: (d: Datum, key: Key, i: number, data: Datum[]) => number): this;
                    };
                    • Returns the current value accessor, which defaults to a function return the property corresponding to the relevant key from the data element.

                      Thus, by default the stack generator assumes that the input data is an array of objects, with each object exposing named properties with numeric values; see stack for an example.

                    • Sets the value accessor to the specified number and returns this stack generator.

                      Parameter value

                      A constant value.

                    • Sets the value accessor to the specified function and returns this stack generator.

                      Parameter value

                      A value accessor function which returns the numeric value for a given data element and key combination. The accessor function is invoked for each data element and key being passed the datum, the key, index of the data element in the input data array, and the complete data array.

                    call signature

                    (data: Iterable<Datum>, ...args: any[]): Array<Series<Datum, Key>>;
                    • Generates a stack for the given array of data, returning an array representing each series. The resulting array has one element per series. Each series in then typically passed to an area generator to render an area chart, or used to construct rectangles for a bar chart.

                      Any additional arguments are arbitrary; they are simply propagated to the generator’s accessor functions along with the this object.

                      Parameter data

                      Array of data elements.

                    interface Symbol

                    interface Symbol<This, Datum> {}
                    • A symbol generator.

                      Symbols provide a categorical shape encoding as is commonly used in scatterplots. Symbols are always centered at ⟨0,0⟩; use a transform (see: SVG, Canvas) to move the arc to a different position.

                      The first generic corresponds to the "this" context within which the symbol generator is invoked. The second generic corresponds to the data type of the datum underlying the symbol.

                    method context

                    context: {
                    (): CanvasRenderingContext2D | null;
                    (context: CanvasRenderingContext2D): this;
                    };
                    • Returns the current rendering context, which defaults to null.

                    • Sets the context and returns this symbol generator.

                    method size

                    size: {
                    (): (this: This, d: Datum, ...args: any[]) => number;
                    (size: number): this;
                    (size: (this: This, d: Datum, ...args: any[]) => number): this;
                    };
                    • Returns the current size accessor, which defaults to a function returning a constant value of 64.

                    • Sets the size to the specified number and returns this symbol generator.

                      Parameter size

                      A fixed size (area in square pixels).

                    • Sets the size to the specified function and returns this symbol generator.

                      Specifying the size as a function is useful for constructing a scatterplot with a size encoding. If you wish to scale the symbol to fit a given bounding box, rather than by area, try SVG’s getBBox.

                      Parameter size

                      An accessor function returning a number to be used as a symbol size. The accessor function is invoked in the same "this" context as the generator was invoked in and receives the same arguments that were passed into the symbol generator.

                    method type

                    type: {
                    (): (this: This, d: Datum, ...args: any[]) => SymbolType;
                    (type: SymbolType): this;
                    (type: (this: This, d: Datum, ...args: any[]) => SymbolType): this;
                    };
                    • Returns the current symbol type accessor, which defaults to a function returning the circle symbol type.

                    • Sets the symbol type to the specified symbol type and returns this symbol generator.

                      Parameter type

                      A constant symbol type.

                    • Sets the symbol type to the specified function and returns this symbol generator.

                      Parameter type

                      An accessor function returning a symbol type. The accessor function is invoked in the same "this" context as the generator was invoked in and receives the same arguments that were passed into the symbol generator. See symbols for the set of built-in symbol types. To implement a custom symbol type, return an object that implements symbolType.draw.

                    call signature

                    (this: This, d?: Datum, ...args: any[]): string | null;
                    • Generates a symbol for the given arguments.

                      IMPORTANT: If the rendering context of the symbol generator is null, then the symbol is returned as a path data string.

                      The "this" context within which this function is invoked, will be the context within which the accessor methods of the generator are invoked. All arguments passed into this function, will be passed to the accessor functions of the generator.

                      For example, with the default settings, no arguments are needed to produce a circle with area 64 square pixels.

                      Parameter d

                      The datum for which the symbol is to be generated.

                    call signature

                    (this: This, d?: Datum, ...args: any[]): void;
                    • Generates an symbol for the given arguments.

                      IMPORTANT: If the symbol generator has been configured with a rendering context, then the symbol is rendered to this context as a sequence of path method calls and this function returns void.

                      The "this" context within which this function is invoked, will be the context within which the accessor methods of the generator are invoked. All arguments passed into this function, will be passed to the accessor functions of the generator.

                      For example, with the default settings, no arguments are needed to produce a circle with area 64 square pixels.

                      Parameter d

                      The datum for which the symbol is to be generated.

                    interface SymbolType

                    interface SymbolType {}
                    • A Symbol Type.

                      Symbol types are typically not used directly, instead being passed to symbol.type. However, you can define your own symbol type implementation should none of the built-in types satisfy your needs using the following interface. You can also use this low-level interface with a built-in symbol type as an alternative to the symbol generator.

                    method draw

                    draw: (context: CanvasPath_D3Shape, size: number) => void;
                    • Renders this symbol type to the specified context with the specified size in square pixels. The context implements the CanvasPath interface. (Note that this is a subset of the CanvasRenderingContext2D interface!)

                      Parameter context

                      A rendering context implementing CanvasPath.

                      Parameter size

                      Size of the symbol to draw.

                    Type Aliases

                    type CurveFactory

                    type CurveFactory =
                    /**
                    * Returns a curve generator which renders to the specified context.
                    *
                    * @param context A rendering context.
                    */
                    (context: CanvasRenderingContext2D | Path) => CurveGenerator;
                    • A factory for curve generators addressing both lines and areas.

                    type CurveFactoryLineOnly

                    type CurveFactoryLineOnly =
                    /**
                    * Returns a "lines only" curve generator which renders to the specified context.
                    *
                    * @param context A rendering context.
                    */
                    (context: CanvasRenderingContext2D | Path) => CurveGeneratorLineOnly;
                    • A factory for curve generators addressing only lines, but not areas.

                    type RadialArea

                    type RadialArea<Datum> = AreaRadial<Datum>;
                    • Deprecated

                      Use AreaRadial interface

                    type RadialLine

                    type RadialLine<Datum> = LineRadial<Datum>;
                    • Deprecated

                      Use LineRadial

                    type RadialLink<This, LinkDatum, NodeDatum> = LinkRadial<This, LinkDatum, NodeDatum>;
                    • Deprecated

                      Use LinkRadial interface

                    Namespaces

                    namespace global

                    namespace global {}

                      interface CanvasRenderingContext2D

                      interface CanvasRenderingContext2D {}

                        Package Files (1)

                        Dependencies (1)

                        Dev Dependencies (0)

                        No dev dependencies.

                        Peer Dependencies (0)

                        No peer dependencies.

                        Badge

                        To add a badge like this onejsDocs.io badgeto your package's README, use the codes available below.

                        You may also use Shields.io to create a custom badge linking to https://www.jsdocs.io/package/@types/d3-shape.

                        • Markdown
                          [![jsDocs.io](https://img.shields.io/badge/jsDocs.io-reference-blue)](https://www.jsdocs.io/package/@types/d3-shape)
                        • HTML
                          <a href="https://www.jsdocs.io/package/@types/d3-shape"><img src="https://img.shields.io/badge/jsDocs.io-reference-blue" alt="jsDocs.io"></a>