mirror of
https://github.com/nasa/openmct.git
synced 2024-12-21 06:03:08 +00:00
5e2e0b4116
Fix usages of the plot updater, introduced to track real-time telemetry to remove the need to cache values elsewhere. This allows memory usage to be decreased for WTD-751.
28 lines
762 B
JSON
28 lines
762 B
JSON
{
|
|
"name": "Plot view for telemetry",
|
|
"extensions": {
|
|
"views": [
|
|
{
|
|
"name": "Plot",
|
|
"key": "plot",
|
|
"templateUrl": "templates/plot.html",
|
|
"needs": [ "telemetry" ],
|
|
"delegation": true
|
|
}
|
|
],
|
|
"directives": [
|
|
{
|
|
"key": "mctChart",
|
|
"implementation": "MCTChart.js",
|
|
"depends": [ "$interval", "$log" ]
|
|
}
|
|
],
|
|
"controllers": [
|
|
{
|
|
"key": "PlotController",
|
|
"implementation": "PlotController.js",
|
|
"depends": [ "$scope", "telemetryFormatter", "telemetrySubscriber" ]
|
|
}
|
|
]
|
|
}
|
|
} |