Skip to content

Instantly share code, notes, and snippets.

@mstefaniuk
Last active December 30, 2015 12:59
Show Gist options
  • Save mstefaniuk/7832513 to your computer and use it in GitHub Desktop.
Save mstefaniuk/7832513 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<meta charset="utf-8">
<style>
body {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
width: 960px;
height: 500px;
position: relative;
}
</style>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script>
var width = 960,
height = 500;
var svg = d3.select("body").append("svg")
.attr("width", width)
.attr("height", height);
svg.append("line")
.attr("x1", 5)
.attr("y1", 5)
.attr("x2", 50)
.attr("y2", 50)
.attr("stroke-width", 2)
.attr("stroke", "black");
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment