Skip to content

Instantly share code, notes, and snippets.

View amendelson's full-sized avatar

Aaron Mendelson amendelson

  • The Center For Public Integrity
  • Los Angeles
  • X @a_mendelson
View GitHub Profile
@chelsimoy
chelsimoy / highlight-bars.js
Created September 16, 2013 01:00
one way to highlight minor bars
var networks = ["Comedy Central","TNT", "C-SPAN"];
//inside the bars data join, this code is helpful
.classed("g-minor-highlight", function(d) { return networks.indexOf(d.Network) >= 0; });