Is there a way to color specific bars? If a bar is less than the line, color it red.
Code: https://github.com/tvinci/webs/blob/gh-pages/lineplusbar.html
Exam
You can do:
d3.selectAll("rect.nv-bar") .style("fill", function(d, i){ return d.y > 50 ? "red":"blue"; });