D3
OG
Old school D3 from simpler times
All examples
By author
By category
About
Alfsig
Full window
Github gist
Language data
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Loading CSV Data</title> <script type="text/javascript" src="https://d3js.org/d3.v3.js"></script> </head> <body> <svg width="300" height="400"> <line x1="10" y1="8" x2="300" y2="250" stroke="red" stroke-width="3" /> <circle cx="200" cy="100" r="100" fill="orange" /> <polygon fill="white" stroke="blue" points="150,75 258,137.5 258,262.5 150,325 42,262.6 042,137.5" /> </svg> <script type="text/javascript"> d3.csv("https://gist.githubusercontent.com/Alfsig/575130501fb6c7582857/raw/b3f68528cf6580dfc50a29b486d1d2a3e9f86434/data_langage.csv", function(data) { console.log(data); }); </script> </body> </html>
Modified
http://d3js.org/d3.v3.js
to a secure url
https://d3js.org/d3.v3.js