Skip to content

Instantly share code, notes, and snippets.

@olgabot
Created March 21, 2013 07:17
Show Gist options
  • Save olgabot/5211247 to your computer and use it in GitHub Desktop.
Save olgabot/5211247 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},"_.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 svg = d3.select('svg');
var g = svg.append('g').attr('transform', 'translate(100, 100)');
var data = [32, 57, 112];
var colors = d3.scale.category10(); //ordinal()
// .domain(data)
// .range(colorbrewer.Set1[7]);
var circle = g.selectAll("circle")
.data(data)
.enter().append("circle")
.attr("cx", function(d) { return d; })
.attr("cy", function(d) { return d; })
.attr("r", 10)
.style('fill', function(d) { return colors(d); });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment