Skip to content

Instantly share code, notes, and snippets.

@neilus
Created May 6, 2013 03:05
Show Gist options
  • Save neilus/5523152 to your computer and use it in GitHub Desktop.
Save neilus/5523152 to your computer and use it in GitHub Desktop.
created by livecoding - http://livecoding.io/3419316
{
"libraries": [
"d3"
],
"mode": "javascript",
"layout": "fullscreen mode (horizontal)",
"resolution": "reset"
}
svg {
position: absolute;
}
var width = $('svg').width();
var height = $('svg').height();
var svg = d3.select('svg');
svg
.attr('width', width)
.attr('height', height);
numbers = [120,,54,160,180,240];
svg.selectAll('circle')
.data(numbers)
.enter().append('circle')
.attr('cy', 236)
.attr('cx', String)
.attr('r', Math.sqrt);
divs = d3.selectAll("div")
.data(numbers)
.enter().text(String)
.append("div");
divs.exit();
divs.update();
divs.order();
/*
var circles = svg.selectAll("circle");
circles.style("fill",d3.color(String));
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment