Last active
October 6, 2015 03:53
-
-
Save amitkaps/177feb6f24ba10648883 to your computer and use it in GitHub Desktop.
Bar Chart - SVG
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<svg class="chart" width="250" height="200" fill="brown" > | |
<rect x="0" y="0" width="50" height="25"></rect> | |
<rect x="0" y="30" width="250" height="25"></rect> | |
<rect x="0" y="60" width="150" height="25"></rect> | |
<rect x="0" y="90" width="200" height="25"></rect> | |
<rect x="0" y="120" width="100" height="25"></rect> | |
</svg> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment