D3
OG
Old school D3 from simpler times
All examples
By author
By category
About
asherif844
Full window
Github gist
Deaths in Syria: Infant vs. Age under 5
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Line Chart</title> <script type="text/javascript" src="https://d3js.org/d3.v3.js"></script> <style type="text/css"> body { background-color: grey; font-family: Helvetica, Arial, sans-serif; } h1 { font-size: 24px; font-family:Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif; margin: 0; color:white; } p { font-size: 12px; font-family:Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif; margin: 10px 0 0 0; color:#400101; font-weight:600; } svg { background-color: maroon; } circle:hover { fill: green; } .axis path, .axis line { fill: none; stroke: white; shape-rendering: crispEdges; } .axis text { font-family: sans-serif; font-size: 11px; font-weight:100; stroke: white; } </style> </head> <body> <div style="align-content:left"> <h1 style="color: black">Deaths in Syria</h1> <p style="padding-bottom:12px">Number of Infant deaths vs Number of Under age of 5 deaths </p> <script type="text/javascript"> var w = 650; var h = 420; var padding = [ 20, 0, 50, 50 ]; //Top, right, bottom, left var xScale = d3.scale.linear() .range([ padding[3], w - padding[1] - padding[3] ]); var yScale = d3.scale.linear() .range([ padding[0], h - padding[2] ]); var xAxis = d3.svg.axis() .scale(xScale) .orient("bottom") .tickFormat(function(d) { return d; }); var yAxis = d3.svg.axis() .scale(yScale) .orient("left") .tickFormat(function(d) { return d; }); var svg = d3.select("body") .append("svg") .attr("width", w) .attr("height", h); d3.csv("syriadeaths.csv", function(data) { xScale.domain([ d3.min(data, function(d) { return +d.No_of_Infant_deaths; }), d3.max(data, function(d) { return +d.No_of_Infant_deaths; }) ]); yScale.domain([ d3.max(data, function(d) { return +d.Number_of_under_five_deaths; }), d3.min(data, function(d) { return +d.Number_of_under_five_deaths; }) ]); var circles = svg.selectAll("circle") .data(data) .enter() .append("circle"); circles.attr("cx", function(d) { return xScale(d.No_of_Infant_deaths); }) .attr("cy", function(d) { return yScale(d.Number_of_under_five_deaths); }) .attr("r", 0.1) .attr("fill", "black") .append("title") .text(function(d) { return "Death toll for Children under the age of 5 in Syria was " + d.Number_of_under_five_deaths + " and the death toll for the number of infants in Syria was " + d.No_of_Infant_deaths + " in "+ d.IndicatorName; }); circles.sort(function(a, b) { return d3.ascending(+a.Number_of_under_five_deaths, +b.Number_of_under_five_deaths); }) .transition() .delay(function(d, i) { return i * 50; }) .duration(2000) .attr("r", 8); svg.append("g") .attr("class", "x axis") .attr("transform", "translate(0," + (h - padding[2] + 10) + ")") .call(xAxis); svg.append("g") .attr("class", "y axis") .attr("transform", "translate(" + (padding[3] - 10) + ",0)") .call(yAxis); }); </script> </div> </body> </html>
Modified
http://d3js.org/d3.v3.js
to a secure url
https://d3js.org/d3.v3.js