source: Dev/trunk/d3/README.md @ 198

Last change on this file since 198 was 76, checked in by fpvanagthoven, 14 years ago

d3

File size: 1.5 KB
Line 
1# D3
2
3**D3** is a small, free JavaScript library for manipulating HTML documents
4based on data. D3 can help you quickly visualize your data as HTML or SVG,
5handle interactivity, and incorporate smooth transitions and staged animations
6into your pages. You can use D3 as a visualization framework (like Protovis),
7or you can use it to build dynamic pages (like jQuery).
8
9### Browser Support
10
11D3 should work on any browser, with minimal requirements such as JavaScript
12and the [W3C DOM](http://www.w3.org/DOM/) API. By default D3 requires the
13[Selectors API](http://www.w3.org/TR/selectors-api/) Level 1, but you can
14preload [Sizzle](http://sizzlejs.com/) for compatibility with older browsers.
15Some of the included D3 examples use additional browser features, such as
16[SVG](http://www.w3.org/TR/SVG/) and [CSS3
17Transitions](http://www.w3.org/TR/css3-transitions/). These features are not
18required to use D3, but are useful for visualization! D3 is not a
19compatibility layer. The examples should work on Firefox, Chrome (Chromium),
20Safari (WebKit), Opera and IE9.
21
22Note: Chrome has strict permissions for reading files out of the local file
23system. Some examples use AJAX which works differently via HTTP instead of local
24files. For the best experience, load the D3 examples from your own machine via
25HTTP. Any static file web server will work; for example you can run Python's
26built-in server:
27
28    python -m SimpleHTTPServer 8888
29
30Once this is running, go to: <http://localhost:8888/examples/>
Note: See TracBrowser for help on using the repository browser.