D3
14 |Data Driven Documents
15 | this = http://vadim.ogievetsky.com/IntroD3 16 |17 | github = http://github.com/vogievetsky/IntroD3 18 |
├── .gitignore ├── images ├── inspect.png └── svgbook.png ├── README.md ├── template.html ├── example_sort.html ├── deck ├── deck.js ├── slide_maker.js ├── deck.css └── deck.less ├── LICENSE ├── d3 └── LICENSE ├── index.html ├── slide_maker.js ├── example_bar_chart.html ├── slides.js ├── slides.coffee └── data └── browsers.js /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /images/inspect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vogievetsky/IntroD3/HEAD/images/inspect.png -------------------------------------------------------------------------------- /images/svgbook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vogievetsky/IntroD3/HEAD/images/svgbook.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | D3 slides in D3 that I put together after becoming frustrated with explaining D3 using PowerPoint. 2 | 3 | Questions, comments, contributions, feedback, etc. 4 | 5 | ```javascript 6 | // base64 email for fun. 7 | sendEmailTo(atob("dmFkaW1Ab2dpZXZldHNreS5jb20=")) 8 | ``` 9 | 10 | ## License 11 | 12 | MIT © [Vadim Ogievetsky](http://vadim.ogievetsky.com) 13 | -------------------------------------------------------------------------------- /template.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 |
36 |
37 |