Expose x2Axis and y2Axis for lineWithFocusChart instances

master-patched
Jeremy Grosser 12 years ago
parent b55910786d
commit 6132155dc2

@ -3679,6 +3679,8 @@ nv.models.lineWithFocusChart = function() {
chart.legend = legend;
chart.xAxis = xAxis;
chart.yAxis = yAxis;
chart.x2Axis = x2Axis;
chart.y2Axis = y2Axis;
d3.rebind(chart, lines, 'x', 'y', 'size', 'xDomain', 'yDomain', 'forceX', 'forceY', 'interactive', 'clipEdge', 'clipVoronoi', 'id');
@ -6779,4 +6781,4 @@ nv.models.stackedAreaChart = function() {
return chart;
}
})();
})();

Loading…
Cancel
Save