Skip to content

Instantly share code, notes, and snippets.

@made-by-chris
Created July 27, 2014 14:30
Show Gist options
  • Save made-by-chris/0e1659bdab0afeccff88 to your computer and use it in GitHub Desktop.
Save made-by-chris/0e1659bdab0afeccff88 to your computer and use it in GitHub Desktop.
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