Skip to content

Latest commit

 

History

History
1408 lines (1231 loc) · 148 KB

API.md

File metadata and controls

1408 lines (1231 loc) · 148 KB

D3 API Reference

D3 is a collection of modules that are designed to work together; you can use the modules independently, or you can use them together as part of the default build. The source and documentation for each module is available in its repository. Follow the links below to learn more. For changes between major versions, see CHANGES; see also the release notes and the 3.x reference.

D3 uses semantic versioning. The current version is exposed as d3.version.

Array manipulation, ordering, searching, summarizing, etc.

Methods for computing basic summary statistics.

  • d3.min - compute the minimum value in an iterable.
  • d3.minIndex - compute the index of the minimum value in an iterable.
  • d3.max - compute the maximum value in an iterable.
  • d3.maxIndex - compute the index of the maximum value in an iterable.
  • d3.extent - compute the minimum and maximum value in an iterable.
  • d3.sum - compute the sum of an iterable of numbers.
  • d3.mean - compute the arithmetic mean of an iterable of numbers.
  • d3.median - compute the median of an iterable of numbers (the 0.5-quantile).
  • d3.cumsum - comute the cumulative sum of an iterable.
  • d3.quantile - compute a quantile for an iterable of numbers.
  • d3.quantileSorted - compute a quantile for a sorted array of numbers.
  • d3.variance - compute the variance of an iterable of numbers.
  • d3.deviation - compute the standard deviation of an iterable of numbers.
  • d3.fsum - compute a full precision summation of an iterable of numbers.
  • new d3.Adder - creates a full precision adder.
  • adder.add - add a value to an adder.
  • adder.valueOf - returns a double precision representation of an adder’s value.

Methods for searching arrays for a specific element.

Methods for transforming arrays and for generating new arrays.

  • d3.group - group an iterable into a nested Map.
  • d3.groups - group an iterable into a nested array.
  • d3.index - index an iterable into a nested Map.
  • d3.indexes - index an iterable into a nested array.
  • d3.rollup - reduce an iterable into a nested Map.
  • d3.rollups - reduce an iterable into a nested array.
  • d3.count - count valid number values in an iterable.
  • d3.cross - compute the Cartesian product of two iterables.
  • d3.merge - merge multiple iterables into one array.
  • d3.pairs - create an array of adjacent pairs of elements.
  • d3.permute - reorder an iterable of elements according to an iterable of indexes.
  • d3.shuffle - randomize the order of an iterable.
  • d3.shuffler - randomize the order of an iterable.
  • d3.ticks - generate representative values from a numeric interval.
  • d3.tickIncrement - generate representative values from a numeric interval.
  • d3.tickStep - generate representative values from a numeric interval.
  • d3.range - generate a range of numeric values.
  • d3.transpose - transpose an array of arrays.
  • d3.zip - transpose a variable number of arrays.

Bin discrete samples into continuous, non-overlapping intervals.

Human-readable reference marks for scales.

Select a one- or two-dimensional region using the mouse or touch.

Color manipulation and color space conversion.

Color ramps and palettes for quantitative, ordinal and categorical scales.

Categorical

Diverging

Sequential (Single Hue)

Sequential (Multi-Hue)

Cyclical

Compute contour polygons using marching squares.

Compute the Voronoi diagram of a set of two-dimensional points.

Separate concerns using named callbacks.

Drag and drop SVG, HTML or Canvas using mouse or touch input.

Parse and format delimiter-separated values, most commonly CSV and TSV.

Easing functions for smooth animation.

Convenience methods on top of the Fetch API.

  • d3.blob - get a file as a blob.
  • d3.buffer - get a file as an array buffer.
  • d3.csv - get a comma-separated values (CSV) file.
  • d3.dsv - get a delimiter-separated values (CSV) file.
  • d3.html - get an HTML file.
  • d3.image - get an image.
  • d3.json - get a JSON file.
  • d3.svg - get an SVG file.
  • d3.text - get a plain text file.
  • d3.tsv - get a tab-separated values (TSV) file.
  • d3.xml - get an XML file.

Force-directed graph layout using velocity Verlet integration.

Format numbers for human consumption.

Geographic projections, shapes and math.

  • d3.geoPath - create a new geographic path generator.
  • path - project and render the specified feature.
  • path.area - compute the projected planar area of a given feature.
  • path.bounds - compute the projected planar bounding box of a given feature.
  • path.centroid - compute the projected planar centroid of a given feature.
  • path.measure - compute the projected planar length of a given feature.
  • path.projection - set the geographic projection.
  • path.context - set the render context.
  • path.pointRadius - set the radius to display point features.
  • d3.geoArea - compute the spherical area of a given feature.
  • d3.geoBounds - compute the latitude-longitude bounding box for a given feature.
  • d3.geoCentroid - compute the spherical centroid of a given feature.
  • d3.geoDistance - compute the great-arc distance between two points.
  • d3.geoLength - compute the length of a line string or the perimeter of a polygon.
  • d3.geoInterpolate - interpolate between two points along a great arc.
  • d3.geoContains - test whether a point is inside a given feature.
  • d3.geoRotation - create a rotation function for the specified angles.
  • rotation - rotate the given point around the sphere.
  • rotation.invert - unrotate the given point around the sphere.

Layout algorithms for visualizing hierarchical data.

Interpolate numbers, colors, strings, arrays, objects, whatever!

Serialize Canvas path commands to SVG.

Geometric operations for two-dimensional polygons.

Two-dimensional recursive spatial subdivision.

Generate random numbers from various distributions.

Encodings that map abstract data to visual representation.

Map a continuous, quantitative domain to a continuous range.

Map a continuous, quantitative domain to a continuous, fixed interpolator.

Map a continuous, quantitative domain to a continuous, fixed interpolator.

Map a continuous, quantitative domain to a discrete range.

Map a discrete domain to a discrete range.

Transform the DOM by selecting elements and joining to data.

Graphical primitives for visualization.

Circular or annular sectors, as in a pie or donut chart.

Compute the necessary angles to represent a tabular dataset as a pie or donut chart.

A spline or polyline, as in a line chart.

An area, defined by a bounding topline and baseline, as in an area chart.

Interpolate between points to produce a continuous shape.

A smooth cubic Bézier curve from a source to a target.

A categorical shape encoding, as in a scatterplot.

Stack shapes, placing one adjacent to another, as in a stacked bar chart.

Parse and format times, inspired by strptime and strftime.

A calculator for humanity’s peculiar conventions of time.

An efficient queue for managing thousands of concurrent animations.

  • d3.now - get the current high-resolution time.
  • d3.timer - schedule a new timer.
  • timer.restart - reset the timer’s start time and callback.
  • timer.stop - stop the timer.
  • d3.timerFlush - immediately execute any eligible timers.
  • d3.timeout - schedule a timer that stops on its first callback.
  • d3.interval - schedule a timer that is called with a configurable period.

Animated transitions for selections.

Pan and zoom SVG, HTML or Canvas using mouse or touch input.