Skip to content

Instantly share code, notes, and snippets.

@curran
Last active September 15, 2016 14:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save curran/d0c9242fe9caa5c1ac1f4d98f642c855 to your computer and use it in GitHub Desktop.
Save curran/d0c9242fe9caa5c1ac1f4d98f642c855 to your computer and use it in GitHub Desktop.
Pseudo Bar Chart I
license: mit

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>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment