Skip to content

Instantly share code, notes, and snippets.

@cynddl
Created February 13, 2014 12:05
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save cynddl/8973938 to your computer and use it in GitHub Desktop.
Simple circles
{"description":"Simple circles","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":"pingpong","bv":false,"nclones":15,"clone_opacity":0.4,"duration":3000,"ease":"linear","dt":0.01}
var svg = d3.select('svg');
// Sélectionner et ajouter des données
var circle = svg.selectAll("circle")
.data([32, 57, 293]);
// Modification en fonction des données
circle.enter().append("circle")
.attr("cy", 90)
.attr("cx", function(d) { return d; })
.attr("r", function(d) { return Math.sqrt(d) });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment