Skip to content

Instantly share code, notes, and snippets.

@chelsimoy
Created September 16, 2013 01:00
Show Gist options
  • Save chelsimoy/6575645 to your computer and use it in GitHub Desktop.
Save chelsimoy/6575645 to your computer and use it in GitHub Desktop.
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; });
@amendelson
Copy link

great code =)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment