D3
OG
Old school D3 from simpler times
All examples
By author
By category
About
hpark75
Full window
Github gist
Module 2 - Hee Joon Park
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Loading CSV Data with D3</title> <script type="text/javascript" src="https://d3js.org/d3.v3.js"></script> </head> <body> <p>Not much to see here; try looking in the console!</p> <svg width="500" height="200"> <rect x="10" y="10" width="100" height="100" fill="red" /> <circle cx="170" cy="60" r="50" fill="green" /> <polygon points="230,17 330,17 280,104" fill="blue"/> <text x="10" y="180" fill="charcoal" font-size="42" font-weight="bold" font-family="Helvetica">Hee Joon Park</text> </svg> <script type="text/javascript"> //Load in contents of CSV file d3.csv("health_g20.csv", function(data) { //Now CSV contents have been transformed into //an array of JSON objects. //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