[Time Conductor] Update plot to support different formats

...for telemetry domain values.
This commit is contained in:
Victor Woeltjen
2015-10-27 11:22:19 -07:00
parent 3fe386fcd6
commit 0bd1d53d25
5 changed files with 98 additions and 7 deletions

View File

@ -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;
}