mirror of
https://github.com/nasa/openmct.git
synced 2025-03-13 07:54:13 +00:00
WTD-1172 Moved HTML limits markup out of plot.html and into temp-limits/.../examples.html
21 lines
727 B
HTML
21 lines
727 B
HTML
<h1>Limits Examples</h1>
|
|
|
|
<h2>Plot limits</h2>
|
|
<div ng-init="limits=[
|
|
{type: 'upr', severity: 'red', top: 0, bottom: 90},
|
|
{type: 'upr', severity: 'yellow', top: 10, bottom: 80},
|
|
{type: 'lwr', severity: 'yellow', top: 70, bottom: 20},
|
|
{type: 'lwr', severity: 'red', top: 80, bottom: 0}
|
|
]"></div>
|
|
<div style="width: 1000px; height: 500px">
|
|
<div class="gl-plot" style="height: 100%;">
|
|
<div class="gl-plot-display-area">
|
|
<div
|
|
ng-repeat="limit in limits"
|
|
ng-show="1"
|
|
class="t-limit l-limit s-limit-{{limit.type}} s-limit-{{limit.severity}}"
|
|
style="top: {{limit.top}}%; bottom: {{limit.bottom}}%"
|
|
></div>
|
|
</div>
|
|
</div>
|
|
</div> |