mirror of
https://github.com/nasa/openmct.git
synced 2024-12-20 21:53:08 +00:00
a82fea2166
[Plot] Improve plotting performance
30 lines
842 B
JSON
30 lines
842 B
JSON
{
|
|
"name": "Plot view for telemetry",
|
|
"extensions": {
|
|
"views": [
|
|
{
|
|
"name": "Plot",
|
|
"key": "plot",
|
|
"glyph": "6",
|
|
"templateUrl": "templates/plot.html",
|
|
"needs": [ "telemetry" ],
|
|
"priority": "preferred",
|
|
"delegation": true
|
|
}
|
|
],
|
|
"directives": [
|
|
{
|
|
"key": "mctChart",
|
|
"implementation": "MCTChart.js",
|
|
"depends": [ "$interval", "$log" ]
|
|
}
|
|
],
|
|
"controllers": [
|
|
{
|
|
"key": "PlotController",
|
|
"implementation": "PlotController.js",
|
|
"depends": [ "$scope", "telemetryFormatter", "telemetryHandler", "throttle" ]
|
|
}
|
|
]
|
|
}
|
|
} |