Skip to content

Instantly share code, notes, and snippets.

@gabrielflorit
Forked from anonymous/water.js
Created July 24, 2012 16:35
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 gabrielflorit/3171077 to your computer and use it in GitHub Desktop.
Save gabrielflorit/3171077 to your computer and use it in GitHub Desktop.
var width = $('svg').width();
var height = $('svg').height();
var svg = d3.select('svg');
svg
.attr('width', width)
.attr('height', height);
svg.selectAll('circle')
.data([18, 57, 112, 323])
.enter().append('circle')
.attr('cy', 236)
.attr('cx', String)
.attr('r', Math.sqrt);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment