[Plot] Update stacked plots immediately

When changes to pan-zoom bounds are made in one
subplot, this will effect the pan-zoom bounds of
other subplots. Ensure this occurs immediately.
WTD-625.
This commit is contained in:
Victor Woeltjen
2014-12-11 19:33:09 -08:00
parent 9c1d72f917
commit 188e98a78b
4 changed files with 18 additions and 10 deletions

View File

@ -63,15 +63,13 @@ define(
return {
popPanZoom: popPanZoom,
clearPanZoom: clearPanZoom,
setBasePanZoom: setBasePanZoom,
getDepth: function () {
return stacks.length > 0 ?
stacks[0].getDepth() : 0;
},
getPanZoomStack: function (index) {
return decoratedStacks[index];
},
getPanZoomStacks: function () {
return decoratedStacks;
}
};