openmct/platform/features/plot/bundle.json
Victor Woeltjen 870172ec6f [Plot] Complete specs for plot
Complete specs for transitioned plot view, WTD-533.
2014-12-02 11:08:21 -08:00

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" ]
}
]
}
}