Skip to content

Instantly share code, notes, and snippets.

@lewis500
Created March 20, 2014 23:59
Show Gist options
  • Save lewis500/9676705 to your computer and use it in GitHub Desktop.
Save lewis500/9676705 to your computer and use it in GitHub Desktop.
Data Binding Illustration
{"description":"Data Binding Illustration","endpoint":"","display":"svg","public":true,"require":[],"fileconfigs":{"inlet.js":{"default":true,"vim":false,"emacs":false,"fontSize":12},"_.md":{"default":true,"vim":false,"emacs":false,"fontSize":12},"config.json":{"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,"thumbnail":"http://i.imgur.com/DFgDX32.png","ajax-caching":true}
var svg = d3.select("svg");
var data = [ 42, 13, 26 ];
var circles = svg.selectAll("circles")
.data(data)
.enter()
.append("circle") //adds a circle to each group
.attr({
cx: function(d){
return d * 10},
cy: function(d){
return d * 5
},
r: function(d){
return d
},
fill: "coral",
"stroke-width": 3
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment