D3
OG
Old school D3 from simpler times
All examples
By author
By category
About
tmcw
Full window
Github gist
Voxels of Crime in DC
<!DOCTYPE html> <html> <head> <title>voxel</title> <style> body { font:13px/20px 'Helvetica Neue'; margin:0; } a { color:red; text-decoration:none; } #c { position: absolute; top:0; left:0; width:100%; height:100%; } </style> </head> <body> <h2 id='date'></h2> <canvas id='c'></canvas> <script src='d3.v2.js'></script> <script src='crime.js'></script> </body> </html>