Skip to content

Instantly share code, notes, and snippets.

@romsson
Last active May 15, 2018 16:52
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 romsson/47bd4d5100dd6d9aec81b3f260ed1a3f to your computer and use it in GitHub Desktop.
Save romsson/47bd4d5100dd6d9aec81b3f260ed1a3f to your computer and use it in GitHub Desktop.
[introd3] static chart - line chart
license: mit
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<script src="https://d3js.org/d3.v4.min.js"></script>
<style>
body { margin:0;position:fixed;top:0;right:0;bottom:0;left:0; }
line {
fill: none;
stroke: black;
stroke-width: 1px;
}
</style>
</head>
<body>
<svg width="960" height="500">
<line x1="50" y1="178" x2="100" y2="100"></line>
<line x1="100" y1="100" x2="150" y2="120"></line>
<line x1="150" y1="120" x2="200" y2="120"></line>
<line x1="200" y1="120" x2="250" y2="160"></line>
</svg>
</body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment