Classic D3 Examples
Old school D3 from simpler times
baker4cs
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; } </style> </head> <body> <script> // Feel free to change or delete any of the code you see in this editor! var svg = d3.select("body").append("svg") .attr("width", 960) .attr("height", 500); svg.append("rect") .attr("width", 80) .attr("height", 150) .attr("x", 100) .attr("y", 100) .attr("fill", "blue") .attr("stroke", "black") svg.append("rect") .attr("width", 80) .attr("height", 150) .attr("x", 180) .attr("y", 100) .attr("fill", "white") .attr("stroke", "black"); svg.append("rect") .attr("width", 80) .attr("height", 150) .attr("x", 260) .attr("y", 100) .attr("fill", "red") .attr("stroke", "black"); svg.append("rect") .attr("width", 200) .attr("height", 150) .attr("x", 500) .attr("y", 225) .attr("fill", "white") .attr("stroke", "black"); svg.append("circle") .attr("cx", 600) .attr("cy", 300) .attr("r", 35) .attr("fill", "red"); svg.append("rect") .attr("width", 200) .attr("height", 30) .attr("x", 150) .attr("y", 300) .attr("fill", "aquamarine"); svg.append("rect") .attr("width", 200) .attr("height", 30) .attr("x", 150) .attr("y", 330) .attr("fill", "yellow"); svg.append("rect") .attr("width", 200) .attr("height", 30) .attr("x", 150) .attr("y", 360) .attr("fill", "aquamarine"); svg.append("polygon") .attr("width", 50) .attr("height", 50) .attr("points", "150 390, 150 300, 230 345") .attr("fill", "black") </script> </body>
https://d3js.org/d3.v4.min.js