D3
OG
Old school D3 from simpler times
All examples
By author
By category
About
allyraza
Full window
Github gist
sparkline
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; } .line { fill: none; stroke: #ddd; } .circle { fill: none; stroke: #666; } </style> </head> <body> <script> var margin = { top: 10, right: 10, bottom: 10, left: 10 }; var outerWidth = 200; var outerHeight = 100; var width = outerWidth - margin.left - margin.right; var height = outerHeight - margin.top - margin.bottom; 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() .curve(d3.curveCatmullRom) .x(d => x(d.date)) .y(d => y(d.value)); var svg = d3.select("body").append("svg") .attr("width", outerWidth) .attr("height", outerHeight) .append('g') .attr('transform', `translate(${margin.left}, ${margin.top})`); function draw(error, data) { if (error) return; data.forEach(d => { d.date = parseDate(d.date); d.value = +d.value; }); x.domain(d3.extent(data, d => d.date)); y.domain(d3.extent(data, d => d.value)); svg.append('path') .datum(data) .attr('class', 'line') .attr('d', line); svg.append('circle') .attr('class', 'circle') .attr('cx', x(data[0].date)) .attr('cy', y(data[0].value)) .attr('r', 3); } d3.csv('data.csv', draw); </script> </body>
https://d3js.org/d3.v4.min.js