Polyterative
6/12/2019 - 7:18 AM

Angular template variables example

<div *ngIf='{
       userActions:(dataService.userActions$|async)
       } as globalBag'
>

  <ng-container *ngIf='{
  timepointCount:(globalBag.timePoints.length),
  widthObject:({"width.%": globalBag.zoomValue+""})
  }as lowerBag'
  >
  </ng-container>
  
</div>