organization and added a data service

This commit is contained in:
2020-03-02 16:08:08 -06:00
parent 0028156f74
commit eb19039ed7
11 changed files with 205 additions and 225 deletions

View File

@@ -0,0 +1,19 @@
<div class ="viewer">
<div class="container" fxLayout="row wrap" fxLayoutGap="30px">
Total Flow Rate {{ totalFlowRate }}
<div class="flex-spacer"></div>
<mat-menu #appMenu="matMenu">
<ng-container *ngFor="let item of groups; let i = index">
<button mat-menu-item (click)="setRole(i)"> {{ item }}</button>
</ng-container>
</mat-menu>
<button mat-icon-button [matMenuTriggerFor]="appMenu">
<mat-icon>more_vert</mat-icon>
</button>
</div>
<div id="charts"></div>
</div>