Merging in Pull Request #53

master-patched
Bob Monteverde 12 years ago
commit f46328a585

@ -3559,6 +3559,8 @@ nv.models.lineWithFocusChart = function() {
lines2
.width(availableWidth)
.height(availableHeight2)
.x(lines.x())
.y(lines.y())
.color(data.map(function(d,i) {
return d.color || color[i % color.length];
}).filter(function(d,i) { return !data[i].disabled }));

6
nv.d3.min.js vendored

File diff suppressed because one or more lines are too long

@ -104,6 +104,8 @@ nv.models.lineWithFocusChart = function() {
lines2
.width(availableWidth)
.height(availableHeight2)
.x(lines.x())
.y(lines.y())
.color(data.map(function(d,i) {
return d.color || color[i % color.length];
}).filter(function(d,i) { return !data[i].disabled }));

Loading…
Cancel
Save