Fix for data viz

This commit is contained in:
Hillel Coren 2016-05-10 12:20:53 +03:00
parent 2345ff11ed
commit 2a90a548dd

View File

@ -244,7 +244,7 @@
.transition() .transition()
.duration(1000) .duration(1000)
.style("fill", function(d, i) { .style("fill", function(d, i) {
return d.displayAge == -1 ? 'white' : 'red'; return 'red';
}); });
selection.exit().remove(); selection.exit().remove();