D3
OG
Old school D3 from simpler times
All examples
By author
By category
About
jrodgz
Full window
Github gist
JDR VI8 for CS725@ODU
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title>CS725 VI8</title> <script src="d3.min.js" type="text/javascript"></script> <style type="text/css"> .axis path, .axis line { fill: none; stroke: black; shape-rendering: crispEdges; } .axis text, .legend-text { font-family: sans-serif; font-size: 10px; } .hover-label { font-family: sans-serif; font-size: 9px; font-weight: bold; } </style> </head> <body style="text-align: center;"> <script src="legend.js" type="text/javascript"></script> <script src="setup.js" type="text/javascript"></script> <script src="text.js" type="text/javascript"></script> <script src="scatterplot.js" type="text/javascript"></script> <script src="color_map.js" type="text/javascript"></script> <script src="main.js" type="text/javascript"></script> </body> </html>