Created
July 27, 2014 14:30
-
-
Save made-by-chris/0e1659bdab0afeccff88 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
node.append("circle") | |
.attr("r", 60) | |
.style("fill", function(color) { | |
var colors = ["blue","green","red","orange"] | |
for(var i in links; i++){ | |
color = colors[i]; | |
return color; | |
}; | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment