I want to change the default color of multiBarAndStack. i try to use this code but there is no change please someone help me, this is the code that i used:
d3.selectAll("nv-bar positive")
.style("fill", function(d, i){
return d.y > 50 ? "red":"blue";
});