mbostock-bower/d3-bower

Name: d3-bower

Owner: mbostock-bower

Description: Generated files from d3 for Bower.

Created: 2016-02-11 20:52:49.0

Updated: 2017-04-23 17:08:00.0

Pushed: 2018-02-07 18:56:30.0

Homepage: https://github.com/mbostock/d3

Size: 11862

Language: null

GitHub Committers

UserMost Recent Commit# Commits
Mike Bostock2018-02-28 02:16:27.0235
npm-to-cdn-bot (by Forbes Lindesay)2016-09-12 07:43:00.01

Other Committers

UserEmailMost Recent Commit# Commits

README

D3: Data-Driven Documents

D3 (or D3.js) is a JavaScript library for visualizing data using web standards. D3 helps you bring data to life using SVG, Canvas and HTML. D3 combines powerful visualization and interaction techniques with a data-driven approach to DOM manipulation, giving you the full capabilities of modern browsers and the freedom to design the right visual interface for your data.

Resources
Installing

If you use npm, npm install d3. Otherwise, download the latest release. The released bundle supports anonymous AMD, CommonJS, and vanilla environments. You can load directly from d3js.org, CDNJS, or unpkg. For example:

ipt src="https://d3js.org/d3.v5.js"></script>

For the minified version:

ipt src="https://d3js.org/d3.v5.min.js"></script>

You can also use the standalone D3 microlibraries. For example, d3-selection:

ipt src="https://d3js.org/d3-selection.v1.js"></script>

D3 is written using ES2015 modules. Create a custom bundle using Rollup, Webpack, or your preferred bundler. To import D3 into an ES2015 application, either import specific symbols from specific D3 modules:

rt {scaleLinear} from "d3-scale";

Or import everything into a namespace (here, d3):

rt * as d3 from "d3";

In Node:

d3 = require("d3");

You can also require individual modules and combine them into a d3 object using Object.assign:

d3 = Object.assign({}, require("d3-format"), require("d3-geo"), require("d3-geo-projection"));

This work is supported by the National Institutes of Health's National Center for Advancing Translational Sciences, Grant Number U24TR002306. This work is solely the responsibility of the creators and does not necessarily represent the official views of the National Institutes of Health.