mirror of
https://github.com/nasa/openmct.git
synced 2024-12-19 13:17:53 +00:00
[Plot] Restore range tick marks
Restore range tick marks; these were lost in refactoring to support multiple subplots-per-view due to a missed occurrence of an out-of-date interface usage. WTD-625.
This commit is contained in:
parent
188e98a78b
commit
06036ce8b3
@ -26,9 +26,9 @@
|
||||
{{axes[1].active.name}}
|
||||
</div>
|
||||
|
||||
<div ng-repeat="tick in rangeTicks"
|
||||
<div ng-repeat="tick in subplot.getRangeTicks()"
|
||||
class="gl-plot-tick gl-plot-y-tick-label"
|
||||
ng-style="{ bottom: (100 * $index / (rangeTicks.length - 1)) + '%' }">
|
||||
ng-style="{ bottom: (100 * $index / (subplot.getRangeTicks().length - 1)) + '%' }">
|
||||
{{tick.label}}
|
||||
</div>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user