mirror of
https://github.com/nasa/openmct.git
synced 2025-06-19 07:38:15 +00:00
Merged from master
This commit is contained in:
10
src/plugins/plot/README.md
Normal file
10
src/plugins/plot/README.md
Normal file
@ -0,0 +1,10 @@
|
||||
# Plot Plugin
|
||||
|
||||
Enables plot visualization of telemetry data. This plugin adds a plot view that is available from the view switcher for
|
||||
all telemetry objects. Two user createble objects are also added by this plugin, for Overlay and Stacked Plots.
|
||||
Telemetry objects can be added to Overlay and Stacked Plots via drag and drop.
|
||||
|
||||
## Installation
|
||||
``` js
|
||||
openmct.install(openmct.plugins.Plot());
|
||||
```
|
@ -225,7 +225,7 @@
|
||||
left: (100 * (tick.value - min) / interval) + '%'
|
||||
}"
|
||||
ng-title=":: tick.fullText || tick.text">
|
||||
{{:: tick.text | reverse}}
|
||||
{{:: tick.text }}
|
||||
</div>
|
||||
</mct-ticks>
|
||||
|
||||
|
@ -46,7 +46,7 @@ define([
|
||||
},
|
||||
{
|
||||
modelProp: 'range',
|
||||
objectPath: 'form.yAxis.range',
|
||||
objectPath: 'configuration.yAxis.range',
|
||||
coerce: function coerceRange(range) {
|
||||
if (!range) {
|
||||
return {
|
||||
|
Reference in New Issue
Block a user