Created
August 29, 2015 19:41
-
-
Save peterbsmyth/607f05bb0ac5eb65286d to your computer and use it in GitHub Desktop.
demoing building blocks
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<head> | |
<meta charset="utf-8"> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js"></script> | |
</head> | |
<body> | |
<script> | |
var svg = d3.select("body") | |
.append("svg") | |
.attr("width",300).attr("height",300); | |
svg.append("rect") | |
.attr({ | |
x: 0, | |
y: 0, | |
width: 110, | |
height: 58, | |
fill: "steelblue" | |
}); | |
console.log("you are now rocking with d3", d3); | |
</script> | |
</body> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment