mirror of
https://github.com/nasa/openmct.git
synced 2025-06-16 22:28:13 +00:00
[Time Conductor] Add JSDoc to plot
Add JSDoc to scripts/methods added to the Plot plug-in to support integration of custom formats for timestamps.
This commit is contained in:
@ -74,7 +74,8 @@ define(
|
||||
|
||||
/**
|
||||
* Update axis options to reflect current metadata.
|
||||
* @memberof platform/features/plot.PlotAxis
|
||||
* @param {TelemetryMetadata[]} metadata objects describing
|
||||
* applicable telemetry
|
||||
*/
|
||||
PlotAxis.prototype.updateMetadata = function (metadatas) {
|
||||
var axisType = this.axisType,
|
||||
@ -114,6 +115,12 @@ define(
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* Change the domain/range selection for this axis. If the
|
||||
* provided `key` is not recognized as an option, no change
|
||||
* will occur.
|
||||
* @param {string} key the identifier for the domain/range
|
||||
*/
|
||||
PlotAxis.prototype.chooseOption = function (key) {
|
||||
var self = this;
|
||||
this.options.forEach(function (option) {
|
||||
|
Reference in New Issue
Block a user