D3
OG
Old school D3 from simpler times
All examples
By author
By category
About
chule
Full window
Github gist
works with newest version of d3
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html;charset=utf-8"> <title>One Graph</title> <script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.6/d3.min.js" charset="utf-8"></script> <script type="text/javascript" src="simple-graph.js"></script> <style type="text/css"> body { font: 13px sans-serif; } rect { fill: #fff; } ul { list-style-type: none; margin: 0.5em 0em 0.5em 0em; width: 100%; } ul li { display: table-cell; vertical-align: middle; margin: 0em; padding: 0em 1em; } .axis { font-size: 1.5em; } .chart { background-color: #F7F2C5; width: 960px; height: 500px; } circle, .line { fill: none; stroke: steelblue; stroke-width: 2px; } circle { fill: white; fill-opacity: 0.2; cursor: move; } circle.selected { fill: #ff7f0e; stroke: #ff7f0e; } circle:hover { fill: #ff7f0e; stroke: #707f0e; } circle.selected:hover { fill: #ff7f0e; stroke: #ff7f0e; } </style> </head> <body> <div id="chart1" class="chart"></div> <script type="text/javascript"> graph = new SimpleGraph("chart1", { "xmax": 60, "xmin": 0, "ymax": 40, "ymin": 0, "title": "Simple Graph1", "xlabel": "X Axis", "ylabel": "Y Axis" }); </script> </body> </html>
https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.6/d3.min.js