Skip to content

Instantly share code, notes, and snippets.

@xhinking
Created September 12, 2013 07:36
Show Gist options
  • Select an option

  • Save xhinking/6534055 to your computer and use it in GitHub Desktop.

Select an option

Save xhinking/6534055 to your computer and use it in GitHub Desktop.
using d3.js generate a table
d3.csv 'data/data.csv', (data) ->
rows = table.selectAll('tr').data(data)
.enter().append('tr').style('color', (d)-> d.color)
.html((d)-> '<td>'+d.aa+'</td><td>'+d.bb+'</td><td>'+d.cc+'</td>')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment