Skip to content

Instantly share code, notes, and snippets.

@valbeat
Created January 16, 2015 05:07
Show Gist options
  • Save valbeat/ca752bbe8832d73cacb0 to your computer and use it in GitHub Desktop.
Save valbeat/ca752bbe8832d73cacb0 to your computer and use it in GitHub Desktop.
class BarChart
setup: ->
@svg = new Svg('')
@bars = new Bars(@svg.dom)
size: (size) ->
@svg.attr(
width: size.width
height: size.height
)
this
render: (data) ->
@bars.render(data)
this
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment