D3
OG
Old school D3 from simpler times
All examples
By author
By category
About
bmnelson777
Full window
Github gist
U.S. Food Import Growth Rates Bar Chart Test
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>U.S. Food Import Growth Rates, 2004-2014</title> <script type="text/javascript" src="https://d3js.org/d3.v3.js"></script> <style type="text/css"> body { background-color: #c0c0c0; } svg { background-color: #d5d5d5; } </style> </head> <body> <script type="text/javascript"> var svg = d3.select("body") .append("svg") .attr("width", 600) .attr("height", 270); d3.csv("FoodImportsScrubbed.csv", function(data) { data.sort(function(a, b) { return d3.descending(+a.averageGrowth, +b.averageGrowth); }); var rects = svg.selectAll("rect") .data(data) .enter() .append("rect"); rects.attr("x", 0) .attr("y", function(d, i) { return i * 18; }) .attr("width", function(d) { return d.averageGrowth * 30; }) .attr("height", 14) .append("title") .text(function(d) { return d.foodType + " average growth between 2004 and 2013 is " + d.averageGrowth + "%."; }); }); </script> </body> </html>
Modified
http://d3js.org/d3.v3.js
to a secure url
https://d3js.org/d3.v3.js