mirror of
https://github.com/nasa/openmct.git
synced 2025-02-22 10:11:06 +00:00
27 lines
678 B
JSON
27 lines
678 B
JSON
|
{
|
||
|
"name": "Plot view for telemetry",
|
||
|
"extensions": {
|
||
|
"views": [
|
||
|
{
|
||
|
"name": "Plot",
|
||
|
"templateUrl": "templates/plot.html",
|
||
|
"needs": [ "telemetry" ],
|
||
|
"delegation": true
|
||
|
}
|
||
|
],
|
||
|
"directives": [
|
||
|
{
|
||
|
"key": "mctChart",
|
||
|
"implementation": "MCTChart.js",
|
||
|
"depends": [ "$interval" ]
|
||
|
}
|
||
|
],
|
||
|
"controllers": [
|
||
|
{
|
||
|
"key": "PlotController",
|
||
|
"implementation": "PlotController.js",
|
||
|
"depends": [ "$scope" ]
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
}
|