Issue #38 let user set custom scales on the satckedAreaChart

master-patched
Bob Monteverde 12 years ago
parent e91cf0ac25
commit 35ba44bd9f

5
.gitignore vendored

@ -1,4 +1,9 @@
# Jekyll Files #
################
_site
# Random Files #
################
*.swp

@ -6961,7 +6961,7 @@ nv.models.stackedAreaChart = function() {
chart.xAxis = xAxis;
chart.yAxis = yAxis;
d3.rebind(chart, stacked, 'x', 'y', 'interactive', 'offset', 'order', 'style', 'clipEdge', 'size', 'forceX', 'forceY', 'forceSize');
d3.rebind(chart, stacked, 'x', 'y', 'size', 'xScale', 'yScale', 'xDomain', 'yDomain', 'sizeDomain', 'interactive', 'offset', 'order', 'style', 'clipEdge', 'forceX', 'forceY', 'forceSize');
/*
chart.x = function(_) {

8
nv.d3.min.js vendored

File diff suppressed because one or more lines are too long

@ -215,7 +215,7 @@ nv.models.stackedAreaChart = function() {
chart.xAxis = xAxis;
chart.yAxis = yAxis;
d3.rebind(chart, stacked, 'x', 'y', 'interactive', 'offset', 'order', 'style', 'clipEdge', 'size', 'forceX', 'forceY', 'forceSize');
d3.rebind(chart, stacked, 'x', 'y', 'size', 'xScale', 'yScale', 'xDomain', 'yDomain', 'sizeDomain', 'interactive', 'offset', 'order', 'style', 'clipEdge', 'forceX', 'forceY', 'forceSize');
/*
chart.x = function(_) {

Loading…
Cancel
Save