D3
OG
Old school D3 from simpler times
All examples
By author
By category
About
curran
Full window
Github gist
Pseudo Bar Chart I
A pseudo-bar chart for demonstrating basic SVG structure.
Built with
blockbuilder.org
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>SVG Example</title> </head> <body> <svg width="960" height="500"> <rect x="18" y="0" width="170" height="500"></rect> <rect x="207" y="100" width="170" height="400"></rect> <rect x="395" y="200" width="170" height="300"></rect> <rect x="583" y="300" width="170" height="200"></rect> <rect x="771" y="400" width="170" height="100"></rect> </svg> </body> </html>