mirror of
https://github.com/nasa/openmct.git
synced 2025-01-02 03:16:41 +00:00
b556b5e4f2
Bring in scripts for plotting from the sandbox branch to begin transitioning/integrating plot view. WTD-533.
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" ]
|
|
}
|
|
]
|
|
}
|
|
} |