Classic D3 Examples
Old school D3 from simpler times
rangitatanz
Full window
Github gist
fresh block
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{ width : 100%; height: 100%; } </style> </head> <body> <svg> </svg> <script> // Feel free to change or delete any of the code you see in this editor! var data = [120, 250, 175, 200, 80]; var rectWid = 10; var height = 300; var svg = d3.select('svg'); var rect = svg.selectAll("rect") .data(data) .enter().append('rect') .attr('x', (d, i) => i * rectWid) .attr('y', d => height - d) .attr('width', rectWid) .attr('height', d => d) .attr('fill', d => d === 250 ? 'red' : 'blue') .attr('stroke', '#fff'); console.log(rect.nodes()); </script> </body>
https://d3js.org/d3.v4.min.js