mirror of
https://github.com/nasa/openmct.git
synced 2024-12-21 06:03:08 +00:00
870172ec6f
Complete specs for transitioned plot view, WTD-533.
27 lines
686 B
JSON
27 lines
686 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", "$log" ]
|
|
}
|
|
],
|
|
"controllers": [
|
|
{
|
|
"key": "PlotController",
|
|
"implementation": "PlotController.js",
|
|
"depends": [ "$scope" ]
|
|
}
|
|
]
|
|
}
|
|
} |