Skip to content

Instantly share code, notes, and snippets.

@jpmarindiaz
Created April 14, 2013 23:53
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 jpmarindiaz/5384756 to your computer and use it in GitHub Desktop.
Save jpmarindiaz/5384756 to your computer and use it in GitHub Desktop.
Tributary inlet
{"description":"Tributary inlet","endpoint":"","display":"svg","public":true,"require":[],"fileconfigs":{"inlet.js":{"default":true,"vim":false,"emacs":false,"fontSize":12}},"fullscreen":false,"play":false,"loop":false,"restart":false,"autoinit":true,"pause":true,"loop_type":"period","bv":false,"nclones":15,"clone_opacity":0.4,"duration":3000,"ease":"linear","dt":0.01}
var spaceCircles = [30,70,110];
var svg = d3.select("svg");
var circles = svg.selectAll("circle")
.data(spaceCircles).enter().append("circle");
var circleAttributes = circles
.attr("cx", function (d) { return d; })
.attr("cy", function (d) { return d; })
.attr("r", 20 )
.style("fill", function(d) {
var returnColor;
if (d === 30) { returnColor = "green";}
else if (d === 70) { returnColor = "purple";}
else if (d === 110) { returnColor = "red"; }
return returnColor;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment