Bring data to life with SVG, Canvas and HTML. 📊📈🎉
Перейти к файлу
Michael Bostock bcf37e4a66 Generate Delaunay from Voronoi. 2010-11-07 20:57:25 -08:00
data Add symbol map, composite Albers projection. 2010-11-02 23:06:32 -07:00
examples Generate Delaunay from Voronoi. 2010-11-07 20:57:25 -08:00
lib Generate Delaunay from Voronoi. 2010-11-07 20:57:25 -08:00
src Generate Delaunay from Voronoi. 2010-11-07 20:57:25 -08:00
.gitignore Add _site to .gitignore. 2010-10-04 20:36:36 -07:00
LICENSE Fix typo in LICENSE. 2010-10-10 10:37:07 -07:00
Makefile Add d3.geom module. 2010-11-07 13:49:59 -08:00
README.md A simple web server for Chrome. 2010-11-04 19:06:31 -07:00
d3.csv.js Optimize csv.parse slightly. 2010-11-05 00:36:34 -07:00
d3.csv.min.js Optimize csv.parse slightly. 2010-11-05 00:36:34 -07:00
d3.geo.js Don't include geo in the default build. 2010-11-05 00:25:24 -07:00
d3.geo.min.js Don't include geo in the default build. 2010-11-05 00:25:24 -07:00
d3.geom.js Tweak clipping code. 2010-11-07 16:56:02 -08:00
d3.geom.min.js Tweak clipping code. 2010-11-07 16:56:02 -08:00
d3.js Replace previous optimization with filter. 2010-11-07 08:53:34 -08:00
d3.min.js Replace previous optimization with filter. 2010-11-07 08:53:34 -08:00
d3.time.js Almost complete strptime & strftime. 2010-11-05 16:23:53 -07:00
d3.time.min.js Almost complete strptime & strftime. 2010-11-05 16:23:53 -07:00

README.md

d3.js / Data-Driven Documents

D3.js is a small, free JavaScript library for manipulating HTML documents based on data. D3 can help you quickly visualize your data as HTML or SVG, handle interactivity, and incorporate rich animations into your pages. You can use D3 as a visualization framework, or you can just use it to build dynamic pages. Unlike other systems, D3 doesnt tie you to a proprietary representation, so you are free to exercise the full capabilities of modern browsers.

See http://mbostock.github.com/d3/ to learn more!

These examples should run in any browser which supports SVG; D3 is officially supported on Firefox, Chrome (Chromium), Safari (WebKit), Opera and IE9.

NOTICE FOR CHROME USERS

Chrome has strict permissions for reading files out of the local file system. To view some of the examples locally, you will need to start a local web server. One easy way to do that is to install Tornado:

cd ..
git clone https://github.com/facebook/tornado.git
sudo python setup.py install

We have provided a Tornado script for serving static files:

python examples

Once this is running, go to: http://0.0.0.0:8888/examples/index.html