mirror of
https://github.com/nasa/openmct.git
synced 2025-01-19 11:17:04 +00:00
[Plot] Expose alternate domain values correctly
...from example telemetry (sine wave generator), to support testing of switching among domains within plot.
This commit is contained in:
parent
b30e72081c
commit
7dc6f553ac
@ -62,7 +62,7 @@ define(
|
|||||||
// so it's not checked for here, just formatted for display
|
// so it's not checked for here, just formatted for display
|
||||||
// differently.
|
// differently.
|
||||||
return (i + offset) * 1000 + firstTime * 1000 -
|
return (i + offset) * 1000 + firstTime * 1000 -
|
||||||
(domain === 'yesterday' ? ONE_DAY : 0);
|
(domain === 'yesterday' ? (ONE_DAY * 1000) : 0);
|
||||||
};
|
};
|
||||||
|
|
||||||
generatorData.getRangeValue = function (i, range) {
|
generatorData.getRangeValue = function (i, range) {
|
||||||
|
Loading…
Reference in New Issue
Block a user