Skip to content

Instantly share code, notes, and snippets.

@trinary
Created August 20, 2015 16:07
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 trinary/42bf4923ea6ff56dbc1e to your computer and use it in GitHub Desktop.
Save trinary/42bf4923ea6ff56dbc1e to your computer and use it in GitHub Desktop.
test
{"description":"test","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}},"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,"tab":"edit","display_percent":0.7,"thumbnail":"http://i.imgur.com/Z4ghHZY.png","fullscreen":false,"ajax-caching":true}
var svg = d3.select("svg")
var data = [[10,1],[4,5]];
svg.datum(data);
svg.selectAll("rect")
.data(function(d) { return d; })
.enter().append("rect")
.attr({
x: function(d) { return d[0] * 40;},
y: function(d) { return d[1] * 40;},
width: 20,
height: 20
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment