Skip to content

Instantly share code, notes, and snippets.

@porcow
Created May 9, 2013 09:49
Show Gist options
  • Save porcow/5546614 to your computer and use it in GitHub Desktop.
Save porcow/5546614 to your computer and use it in GitHub Desktop.
D3test
{"description":"D3test","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}
var dataset = _.range(10);
var svg = d3.select("svg")
.attr("width", 500)
.attr("height", 500);
svg.selectAll("text").data(dataset)
.enter()
.append("text")
.attr("x", function(d) {return d * 20;})
.attr("y", 250)
.text(String);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment