Skip to content

Instantly share code, notes, and snippets.

View juliemariebrown's full-sized avatar

juliemariebrown

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; });