Skip to content

Instantly share code, notes, and snippets.

@hartzis
Created July 7, 2014 15:39
Show Gist options
  • Save hartzis/093144225f67c410e515 to your computer and use it in GitHub Desktop.
Save hartzis/093144225f67c410e515 to your computer and use it in GitHub Desktop.
Hello World
{"description":"Hello World","endpoint":"","display":"svg","public":true,"require":[],"fileconfigs":{"inlet.js":{"default":true,"vim":false,"emacs":false,"fontSize":12}},"fullscreen":false,"play":false,"loop":false,"restart":false,"autoinit":true,"pause":true,"loop_type":"pingpong","bv":false,"nclones":15,"clone_opacity":0.4,"duration":3000,"ease":"linear","dt":0.01,"ajax-caching":true}
var svg = d3.select('svg');
svg.selectAll('text')
.data(['Hi From Hartzis'])
.enter()
.append('text')
.text(function(d){return d})
.attr('y', 25)
.attr('x', 5)
svg.selectAll('circle')
.data([1])
.enter()
.append('circle')
.attr('r', 2)
.attr('cx', 145)
.attr('cy', 25)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment