D3
OG
Old school D3 from simpler times
All examples
By author
By category
About
meghanhoyer
Full window
Github gist
VA_Test
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>SVG and CSV exercise with D3</title> <script type="text/javascript" src="https://d3js.org/d3.v3.js"></script> </head> <body> <svg width="530" height ="400"> <circle cx="100" cy="100" r="70" fill="blue"></circle> <text x="200" y="110" fill="charcoal" font-size="40" font-weight="bold" font-family="Arial">USA TODAY</text> </svg> <script type="text/javascript"> //Load in contents of CSV file d3.csv("VHA_March1_WaitTimesPending.csv", function(data) { //Log 'data' to the console, for verification. console.log(data); }); </script> </body> </html>
Modified
http://d3js.org/d3.v3.js
to a secure url
https://d3js.org/d3.v3.js