D3
OG
Old school D3 from simpler times
All examples
By author
By category
About
ramnathv
Full window
Github gist
esnextbin sketch
<!doctype html> <html> <head> <meta charset="utf-8"> <title>ESNextbin Sketch</title> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootswatch/3.3.6/paper/bootstrap.min.css" /> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/c3/0.4.10/c3.min.css" /> <!-- put additional styles and scripts here --> <style> #main{margin-top: 20px;} .y-axis-layer path, .y-axis-layer line{ fill: none; } .y-axis-layer line{ stroke: lightgray; } .y-axis-layer text{ font-size: 11px; } </style> </head> <body> <!-- put markup and other contents here --> <div class="container" id="main"> <div class="row"> <div class="col-xs-12 col-md-6"> <div id="app"></div> </div> </div> </div> </body> </html>