From 942328c57cc4b9fe1ab0395472eace8eaaa9e590 Mon Sep 17 00:00:00 2001 From: Mike Bostock Date: Sat, 25 Jun 2016 09:07:29 -0700 Subject: [PATCH] Update API. --- API.md | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/API.md b/API.md index 6e7167e4..8ff2e875 100644 --- a/API.md +++ b/API.md @@ -8,9 +8,9 @@ D3 4.0 is a [collection of modules](https://github.com/d3) that are designed to * [Chords](#chords-d3-chord) * [Collections](#collections-d3-collection) ([Objects](#objects), [Maps](#maps), [Sets](#sets), [Nests](#nests)) * [Colors](#colors-d3-color) -* [Delimiter-Separated Values](#delimiter-separated-values-d3-dsv) * [Dispatches](#dispatches-d3-dispatch) * [Dragging](#dragging-d3-drag) +* [Delimiter-Separated Values](#delimiter-separated-values-d3-dsv) * [Easings](#easings-d3-ease) * [Forces](#forces-d3-force) * [Geographies](#geographies-d3-geo) @@ -217,24 +217,6 @@ Color manipulation and color space conversion. * [d3.hcl](https://github.com/d3/d3-color#hcl) - create a new HCL color. * [d3.cubehelix](https://github.com/d3/d3-color#cubehelix) - create a new Cubehelix color. -## [Delimiter-Separated Values (d3-dsv)](https://github.com/d3/d3-dsv) - -Parse and format delimiter-separated values, most commonly CSV and TSV. - -* [d3.dsvFormat](https://github.com/d3/d3-dsv#dsvFormat) - create a new parser and formatter for the given delimiter. -* [*dsv*.parse](https://github.com/d3/d3-dsv#dsv_parse) - parse the given string, returning an array of objects. -* [*dsv*.parseRows](https://github.com/d3/d3-dsv#dsv_parseRows) - parse the given string, returning an array of rows. -* [*dsv*.format](https://github.com/d3/d3-dsv#dsv_format) - format the given array of objects. -* [*dsv*.formatRows](https://github.com/d3/d3-dsv#dsv_formatRows) - format the given array of rows. -* [d3.csvParse](https://github.com/d3/d3-dsv#csvParse) - parse the given CSV string, returning an array of objects. -* [d3.csvParseRows](https://github.com/d3/d3-dsv#csvParseRows) - parse the given CSV string, returning an array of rows. -* [d3.csvFormat](https://github.com/d3/d3-dsv#csvFormat) - format the given array of objects as CSV. -* [d3.csvFormatRows](https://github.com/d3/d3-dsv#csvFormatRows) - format the given array of rows as CSV. -* [d3.tsvParse](https://github.com/d3/d3-dsv#tsvParse) - parse the given TSV string, returning an array of objects. -* [d3.tsvParseRows](https://github.com/d3/d3-dsv#tsvParseRows) - parse the given TSV string, returning an array of rows. -* [d3.tsvFormat](https://github.com/d3/d3-dsv#tsvFormat) - format the given array of objects as TSV. -* [d3.tsvFormatRows](https://github.com/d3/d3-dsv#tsvFormatRows) - format the given array of rows as TSV. - ## [Dispatches (d3-dispatch)](https://github.com/d3/d3-dispatch) Separate concerns using named callbacks. @@ -259,6 +241,24 @@ Drag and drop SVG, HTML or Canvas using mouse or touch input. * [d3.dragDisable](https://github.com/d3/d3-drag#dragDisable) - * [d3.dragEnable](https://github.com/d3/d3-drag#dragEnable) - +## [Delimiter-Separated Values (d3-dsv)](https://github.com/d3/d3-dsv) + +Parse and format delimiter-separated values, most commonly CSV and TSV. + +* [d3.dsvFormat](https://github.com/d3/d3-dsv#dsvFormat) - create a new parser and formatter for the given delimiter. +* [*dsv*.parse](https://github.com/d3/d3-dsv#dsv_parse) - parse the given string, returning an array of objects. +* [*dsv*.parseRows](https://github.com/d3/d3-dsv#dsv_parseRows) - parse the given string, returning an array of rows. +* [*dsv*.format](https://github.com/d3/d3-dsv#dsv_format) - format the given array of objects. +* [*dsv*.formatRows](https://github.com/d3/d3-dsv#dsv_formatRows) - format the given array of rows. +* [d3.csvParse](https://github.com/d3/d3-dsv#csvParse) - parse the given CSV string, returning an array of objects. +* [d3.csvParseRows](https://github.com/d3/d3-dsv#csvParseRows) - parse the given CSV string, returning an array of rows. +* [d3.csvFormat](https://github.com/d3/d3-dsv#csvFormat) - format the given array of objects as CSV. +* [d3.csvFormatRows](https://github.com/d3/d3-dsv#csvFormatRows) - format the given array of rows as CSV. +* [d3.tsvParse](https://github.com/d3/d3-dsv#tsvParse) - parse the given TSV string, returning an array of objects. +* [d3.tsvParseRows](https://github.com/d3/d3-dsv#tsvParseRows) - parse the given TSV string, returning an array of rows. +* [d3.tsvFormat](https://github.com/d3/d3-dsv#tsvFormat) - format the given array of objects as TSV. +* [d3.tsvFormatRows](https://github.com/d3/d3-dsv#tsvFormatRows) - format the given array of rows as TSV. + ## [Easings (d3-ease)](https://github.com/d3/d3-ease) Easing functions for smooth animation.