D3
OG
Old school D3 from simpler times
All examples
By author
By category
About
ppmdatix
Full window
Github gist
small multiples
Built with
blockbuilder.org
<!DOCTYPE html> <meta charset="utf-8"> <style> body { font: 10px sans-serif; margin: 0; } .line { fill: none; stroke: #898989; stroke-width: 3.3px; } .area { fill: #707070; } </style> <body> <script src="//d3js.org/d3.v3.min.js"></script> <script> var margin = {top: 8, right: 100, bottom: 2, left: 100}, width = 960 - margin.left - margin.right, height = 98 - margin.top - margin.bottom; var color = d3.scale.ordinal().range(["#6b486b", "#a05d56", "#d0743c", "#ff8c00"]); var parseDate = d3.time.format("%b %Y").parse; var x = d3.time.scale() .range([0, width]); var y = d3.scale.linear() .range([height, 0]); var area = d3.svg.area() .x(function(d) { return x(d.date); }) .y0(height) .y1(function(d) { return y(d.price); }); var line = d3.svg.line() .x(function(d) { return x(d.date); }) .y(function(d) { return y(d.price); }); d3.csv("dataset.csv", type, function(error, data) { // Nest data by symbol. var symbols = d3.nest() .key(function(d) { return d.symbol; }) .entries(data); // Compute the maximum price per symbol, needed for the y-domain. symbols.forEach(function(s) { s.maxPrice = d3.max(s.values, function(d) { return d.price; }); }); // Compute the minimum and maximum date across symbols. // We assume values are sorted by date. x.domain([ d3.min(symbols, function(s) { return s.values[0].date; }), d3.max(symbols, function(s) { return s.values[s.values.length - 1].date; }) ]); // Add an SVG element for each symbol, with the desired dimensions and margin. var svg = d3.select("body").selectAll("svg") .data(symbols) .enter().append("svg") .attr("width", width + margin.left + margin.right) .attr("height", height + margin.top + margin.bottom) .append("g") .attr("transform", "translate(" + margin.left + "," + margin.top + ")"); // Add the area path elements. Note: the y-domain is set per element. svg.append("path") .attr("class", "area") .style("fill",function(d, i) { return color(i)}) .attr("d", function(d) { y.domain([0, d.maxPrice]); return area(d.values); }); // Add the line path elements. Note: the y-domain is set per element. svg.append("path") .attr("class", "line") .attr("d", function(d) { y.domain([0, d.maxPrice]); return line(d.values); }); // Add a small label for the symbol name. svg.append("text") .attr("x", width - 6) .attr("y", height - 6) .style("text-anchor", "end") .text(function(d) { return d.key; }); }); function type(d) { d.price = +d.price; d.date = parseDate(d.date); return d; } </script>
https://d3js.org/d3.v3.min.js