D3
OG
Old school D3 from simpler times
All examples
By author
By category
About
allyraza
Full window
Github gist
multiline chart
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; } </style> </head> <body> <script> var margin = { top: 30, right: 30, bottom: 30, left: 30 }; var outerWidth = 600; var outerHeight = 300; var width = outerWidth - margin.left - margin.right; var height = outerHeight - margin.top - margin.bottom; var svg = d3.select("body").append("svg") .attr("width", width) .attr("height", height) .append('g') .attr('transform', `translate(${margin.left}, ${margin.top})`); var parseDate = d3.timeParse('%d-%b-%y'); var x = d3.scaleTime().range([0, width]); var y = d3.scaleLinear().range([height, 0]); var line = d3.line() .x(d => x(d.date)) .y(d => y(d.open)); var line2 = d3.line() .x(d => x(d.date)) .y(d => y(d.close)); function draw(error, data) { if (error) return; data.forEach(d => { d.date = parseDate(d.date); d.open = +d.open; d.close = +d.close; }); x.domain(d3.extent(data, d => d.date)); y.domain([0, d3.max(data, d => Math.max(d.open, d.close))]); svg.append('path') .attr('class', 'line') .attr('fill', 'none') .attr('stroke', '#ddd') .attr('d', line(data)); svg.append('path') .attr('class', 'line2') .attr('fill', 'none') .attr('stroke', 'skyblue') .attr('d', line2(data)); svg.append('g') .call(d3.axisLeft(y)); svg.append('g') .attr('transform', `translate(0, ${height-50})`) .call(d3.axisBottom(x)); } d3.csv('data.csv', draw); </script> </body>
https://d3js.org/d3.v4.min.js