[Plot] Fix refactoring issues

Fix issues related to refactoring of view-level
to subplot-level behavior, such that previous
functionality is restored. This refactoring
supports introduction of a stacked-plot mode,
for WTD-625.
This commit is contained in:
Victor Woeltjen
2014-12-10 20:04:10 -08:00
parent 784b2b6186
commit eb90a3eeba
3 changed files with 7 additions and 4 deletions

View File

@@ -1,7 +1,7 @@
/*global define*/
define(
['elements/PlotPosition', 'elements/PlotFormatter', 'elements/PlotTickGenerator'],
['./elements/PlotPosition', './elements/PlotFormatter', './elements/PlotTickGenerator'],
function (PlotPosition, PlotFormatter, PlotTickGenerator) {
"use strict";
@@ -191,6 +191,9 @@ define(
updateDrawingBounds();
updateMarqueeBox();
updateTicks();
},
setDomainOffset: function (value) {
domainOffset = value;
}
};
}