mirror of
https://github.com/nasa/openmct.git
synced 2025-06-16 22:28:13 +00:00
[Time Conductor] Update plot to support different formats
...for telemetry domain values.
This commit is contained in:
@ -80,6 +80,16 @@ define(
|
||||
this.options = options;
|
||||
}
|
||||
|
||||
PlotAxis.prototype.choose = function (key) {
|
||||
var i;
|
||||
for (i = 0; i < this.options.length; i += 1) {
|
||||
if (this.options[i].key === key) {
|
||||
this.active = this.options[i];
|
||||
return;
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
return PlotAxis;
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user