D3
OG
Old school D3 from simpler times
All examples
By author
By category
About
EssohanamKouyou
Full window
Github gist
first_area
Built with
blockbuilder.org
<!DOCTYPE html> <head> <meta charset="utf-8"> <script src="https://d3js.org/d3.v4.min.js"></script> <style> body { margin:0;position:fixed;top:0;right:0;bottom:0;left:0; } svg { font: 10px sans-serif; } .line { fill: none; stroke: black; stroke-width: 2px; } .area { fill: #e7e7e7; } </style> </head> <body> <script> var margin = {top: 20, right: 30, bottom: 20, left: 100}, width = 760 - margin.left - margin.right, height = 300 - margin.top - margin.bottom; /*var margin = {top: 8, right: 10, bottom: 2, left: 10}, width = 960 - margin.left - margin.right, height = 69 - margin.top - margin.bottom;*/ var parseDate = d3.timeParse("%b %Y"); var x = d3.scaleTime().rangeRound([0, width]), y = d3.scaleLinear().rangeRound([height, 0]), c = d3.scaleOrdinal(d3.schemeCategory10); var area = d3.area() .x(function(d) { return x(d.date); }) .y0(height) .y1(function(d) { return y(d.price); }); var xAxis = d3.axisBottom() .scale(x); var yAxis = d3.axisLeft() .scale(y); var line = d3.line() .curve(d3.curveBasis) .x(function(d) { return x(d.date); }) .y(function(d) { return y(d.price); }); d3.text('dataset.csv', function(error, raw) { var dsv = d3.dsvFormat(',') var data = dsv.parse(raw); // Nest stock values by symbol. var symbols = d3.nest() .key(function(d) { return d.symbol; }) .entries(data); // Parse and caculate some values for each symbols symbols.forEach(function(s) { s.values.forEach(function(d) { d.date = parseDate(d.date); d.price = +d.price; }); s.maxPrice = d3.max(s.values, function(d) { return d.price; }); s.sumPrice = d3.sum(s.values, function(d) { return d.price; }); }); x.domain(d3.extent(data, function(d) { return d.date; })); y.domain([0, d3.max(data, function(d) { return d.close; })]); area.y0(y(0)); 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 + ")"); svg.append("g") .attr("class", "axis axis--x") .attr("transform", "translate(0," + height + ")") .call(xAxis); svg.append("g") .attr("class", "axis axis--y") .call(yAxis); svg.append("path") .attr("class", "area") //.attr("fill",function(d) { return c(d.key); }) .attr("d", function(d) { return area(d.values);}); /*svg.selectAll(".line") .append("path") .attr("class", "line") .attr("d", function(d) { y.domain([0, d.maxPrice]); return line(d.values); }) //.style("fill", function(d) { return c(d.key); }) .style("stroke", function(d) { return c(d.key); });*/ var legend = svg.selectAll(".legend") .data(c.domain()) .enter().append("g") .attr("class", "legend") .attr("transform", function(d, i) { return "translate(0," + i * 20 + ")"; }); legend.append("rect") .attr("x", 30) .attr("width", 18) .attr("height", 18) .style("fill", c); legend.append("text") .attr("x", 50) .attr("y", 9) .attr("dy", ".35em") .style("text-anchor", "start") .text(function(d) { return d; }); }); </script> </body>
https://d3js.org/d3.v4.min.js