D3
OG
Old school D3 from simpler times
All examples
By author
By category
About
nikhilkumar80
Full window
Github gist
d3-chap01
Hello World
<html> <head> <script src="//d3js.org/d3.v3.min.js" charset="utf-8"></script> </head> <body> <ul> <li>Item 01</li> <li>Item 02</li> <li>Item 03</li> <li>Item 04</li> <li>Item 05</li> </ul> <script> d3.selectAll('li').style('border', "red"); </script> </body> </html>
https://d3js.org/d3.v3.min.js