Skip to content

Instantly share code, notes, and snippets.

@limscoder
Created November 19, 2017 16:49
Show Gist options
  • Save limscoder/5a81b47ad672483ed3a0e31a499c716a to your computer and use it in GitHub Desktop.
Save limscoder/5a81b47ad672483ed3a0e31a499c716a to your computer and use it in GitHub Desktop.
D3 DOM selections
// change the color of all .app-user elements
d3.select('.app-user-list')
.selectAll('.app-user')
.style('color', 'green');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment