[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:
Victor Woeltjen 2014-12-11 19:36:01 -08:00
parent 188e98a78b
commit 06036ce8b3

View File

@ -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>