Skip to content

Instantly share code, notes, and snippets.

@ceeblet
Created May 5, 2015 13:26
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 ceeblet/6d9db57def7300ce1da9 to your computer and use it in GitHub Desktop.
Save ceeblet/6d9db57def7300ce1da9 to your computer and use it in GitHub Desktop.
Drawing SVG Shapes with D3 Drawin Shapes w/ D3 = // source http://jsbin.com/yeremu
<!DOCTYPE html>
<html>
<head>
<meta name="description" content="Drawin Shapes w/ D3 = " />
<meta charset="utf-8">
<title>Drawing SVG Shapes with D3</title>
<script src="http://d3js.org/d3.v3.min.js" charset="utf-8"></script>
</head>
<body>
<svg width="250" height="50">
<text x="0" y="25">Easy Peasy</text>
</svg>
<script id="jsbin-javascript">
d3.select("body")
.append("svg")
.attr("width",250)
.attr("height",50)
.append("text")
.text("Easy Peasy")
.attr("y",25)
.attr("x",0)
.style("fill", "blue");
</script>
<script id="jsbin-source-javascript" type="text/javascript">d3.select("body")
.append("svg")
.attr("width",250)
.attr("height",50)
.append("text")
.text("Easy Peasy")
.attr("y",25)
.attr("x",0)
.style("fill", "blue");</script></body>
</html>
d3.select("body")
.append("svg")
.attr("width",250)
.attr("height",50)
.append("text")
.text("Easy Peasy")
.attr("y",25)
.attr("x",0)
.style("fill", "blue");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment