D3
OG
Old school D3 from simpler times
All examples
By author
By category
About
jfsiii
Full window
Github gist
esnextbin sketch
<!doctype html> <html> <head> <meta charset="utf-8"> <title>ESNextbin Sketch</title> <style> body { font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; margin: auto; position: relative; width: 960px; } text { font: 10px sans-serif; } .axis path { display: none; } .axis line { fill: none; stroke: #000; shape-rendering: crispEdges; } .group-label { font-weight: bold; text-anchor: end; } form { position: absolute; right: 10px; top: 10px; } </style> </head> <body> <form> <label><input type="radio" name="mode" value="multiples" checked> Multiples</label> <label><input type="radio" name="mode" value="stacked"> Stacked</label> </form> </body> </html>