Fix bug in linePLusBarChart where clipEdge was not enabled.

This commit is contained in:
Christopher Nelson 2012-09-20 15:45:01 -04:00
parent f742c07347
commit 38a34f8529

View File

@ -203,6 +203,7 @@ nv.models.linePlusBarChart = function() {
lines
.width(availableWidth)
.height(availableHeight)
.clipEdge(true)
.color(data.map(function(d,i) {
return d.color || color(d, i);
}).filter(function(d,i) { return !data[i].disabled && !data[i].bar }))