D3
OG
Old school D3 from simpler times
All examples
By author
By category
About
1wheel
Full window
Github gist
nest-histogram
Using
d3.nest
to make a histogram
<!DOCTYPE html> <meta charset="utf-8"> <style> body{ margin: 0px; font-family: Consolas, Andale Mono, Menlo, Monaco, monospace; overflow-x: scroll; background: #000; } .domain{ display: none; } text{ fill: #fff; } </style> <body> <div id='graph'></div> </body> <script src="d3v4.js"></script> <script src='script.js'></script>