Issue #302 made height2 accessible in the linePlusFocusChart

master-patched
Bob Monteverde 12 years ago
parent 76bb81667d
commit e630446033

@ -4855,6 +4855,12 @@ nv.models.lineWithFocusChart = function() {
return chart;
};
chart.height2 = function(_) {
if (!arguments.length) return height2;
height2 = _;
return chart;
};
chart.color = function(_) {
if (!arguments.length) return color;
color =nv.utils.getColor(_);

8
nv.d3.min.js vendored

File diff suppressed because one or more lines are too long

@ -494,6 +494,12 @@ nv.models.lineWithFocusChart = function() {
return chart;
};
chart.height2 = function(_) {
if (!arguments.length) return height2;
height2 = _;
return chart;
};
chart.color = function(_) {
if (!arguments.length) return color;
color =nv.utils.getColor(_);

Loading…
Cancel
Save