D3
OG
Old school D3 from simpler times
All examples
By author
By category
About
rayeip
Full window
Github gist
House Bar Chart with Axes
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>The People's House</title> <script type="text/javascript" src="https://d3js.org/d3.v3.js"></script> <style type="text/css"> body { background-color: #ffffff; font-family: Arial, Helvetica, sans-serif; } h1 { font-size: 24px; margin: 0; } p { font-size: 12px; margin: 5px 0 20 0; } svg { background-color: #ffffff; } rect:hover { fill: slateblue; } .axis path, .axis line { fill: none; stroke: black; shape-rendering: crispEdges; } .axis text { font-family: Arial, Helvetica, sans-serif; font-size: 9px; } .y.axis path, .y.axis line { opacity: 0; } </style> </head> <body> <h1>Education Level by Congressional District</h1> <p>Percentage of adults age 25 and older with a bachelor’s degree or higher</p> <script type="text/javascript"> var w = 800; var h = 4000; var padding = [ 20, 10, 30, 50 ]; //Top, right, bottom, left var widthScale = d3.scale.linear() .range([ 0, w - padding[1] - padding[3] ]); var heightScale = d3.scale.ordinal() .rangeRoundBands([ padding[0], h - padding[2] ], 0.1); var xAxistop = d3.svg.axis() .scale(widthScale) .orient("top"); var xAxisbot = d3.svg.axis() .scale(widthScale) .orient("bottom"); var yAxis = d3.svg.axis() .scale(heightScale) .orient("left"); var svg = d3.select("body") .append("svg") .attr("width", w) .attr("height", h); d3.csv("CDdemographics.csv", function(data) { data.sort(function(a, b) { return d3.descending(+a.PCT_COLL, +b.PCT_COLL); }); widthScale.domain([ 0, d3.max(data, function(d) { return +d.PCT_COLL; }) ]); heightScale.domain(data.map(function(d) { return d.STCD; } )); var rects = svg.selectAll("rect") .data(data) .enter() .append("rect"); rects.attr("x", padding[3]) .attr("y", function(d) { return heightScale(d.STCD); }) .attr("width", function(d) { return widthScale(d.PCT_COLL); }) .attr("height", heightScale.rangeBand()) .attr("fill", "turquoise") .append("title") .text(function(d) { return d.DISTRICT + ": " + d.PCT_COLL + "% are college graduates"; }); svg.append("g") .attr("class", "x axis") .attr("transform", "translate(" + padding[3] + "," + ( + padding[0]) + ")") .call(xAxistop); svg.append("g") .attr("class", "x axis") .attr("transform", "translate(" + padding[3] + "," + (h - padding[2]) + ")") .call(xAxisbot); svg.append("g") .attr("class", "y axis") .attr("transform", "translate(" + padding[3] + ",0)") .call(yAxis); }); </script> <p>Source: U.S. Census Bureau, <a href="https://factfinder.census.gov/bkmk/table/1.0/en/ACS/13_5YR/S1501/0100000US.50000.113" target="blank">American Community Survey 2009-13</a> </body> </html>
Modified
http://d3js.org/d3.v3.js
to a secure url
https://d3js.org/d3.v3.js