Skip to content

Instantly share code, notes, and snippets.

@romsson
Last active May 15, 2018 17:31
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/9d3c21f8d50a621aa00b529e05e281fb to your computer and use it in GitHub Desktop.
Save romsson/9d3c21f8d50a621aa00b529e05e281fb to your computer and use it in GitHub Desktop.
[introd3] svg marks
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; }
</style>
</head>
<body>
<svg width="960" height="500">
<rect y="178" x="50" width="50" height="22"></rect>
<circle cx="240" cy="72" r="10"></circle>
<line x1="250" y1="178" x2="400" y2="300" style="stroke: black;"></line>
<text y="178" x="150" style="font-size: 32">text</text>
<path d="M150 0 L75 100 L225 100 Z" style="fill: none; stroke: black;"/>
</svg>
</body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment