Skip to content

Instantly share code, notes, and snippets.

@romsson
Last active November 22, 2018 07:38
Show Gist options
  • Save romsson/0983df8e6c7c9f1a5e36a3b44dd4862f to your computer and use it in GitHub Desktop.
Save romsson/0983df8e6c7c9f1a5e36a3b44dd4862f to your computer and use it in GitHub Desktop.
bar chart (100% SVG)
license: mit
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<script src="https://d3js.org/d3.v4.min.js"></script>
<style>
rect {
fill: none;
stroke: black;
stroke-width: 1px;
}
</style>
</head>
<body>
<svg width="960" height="500">
<rect y="178" x="50" width="50" height="22"></rect>
<rect y="168" x="100" width="50" height="32"></rect>
<rect y="179" x="150" width="50" height="21"></rect>
<rect y="177" x="200" width="50" height="23"></rect>
<rect y="190" x="250" width="50" height="10"></rect>
<rect y="178" x="300" width="50" height="22"></rect>
<rect y="189" x="350" width="50" height="11"></rect>
<rect y="181" x="400" width="50" height="19"></rect>
<rect y="170" x="450" width="50" height="30"></rect>
<rect y="150" x="500" width="50" height="50"></rect>
</svg>
</body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment