Skip to content

Instantly share code, notes, and snippets.

@amitkaps
Last active October 6, 2015 03:53
Show Gist options
  • Save amitkaps/177feb6f24ba10648883 to your computer and use it in GitHub Desktop.
Save amitkaps/177feb6f24ba10648883 to your computer and use it in GitHub Desktop.
Bar Chart - SVG
<!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