Skip to content
Snippets Groups Projects

WIP: Resolve "answer statistics (logic)"

Closed Hagen Dreßler requested to merge 113-answer-statistics-logic into master
Viewing commit 28fb804c
Show latest version
3 files
+ 38
4
Compare changes
  • Side-by-side
  • Inline
Files
3
<mat-card>
<mat-progress-bar [value]="50">
</mat-progress-bar>
</mat-card>
<div fxLayout="row" fxLayoutAlign="center">
<div fxLayout="column" fxLayoutGap="20px">
<mat-card>
<mat-tab-group>
<mat-tab label="Answer statistic">
<mat-select placeholder="Answers" fxLayoutAlign="right">
<mat-option *ngFor="let state of states" [value]="state.value">
{{ state.value }}
</mat-option>
</mat-select>
<div class="bars">
Answer 1
<mat-progress-bar [value]="50" #col *ngIf="state.value === 'Responded' :">
</mat-progress-bar>
</div>
</mat-tab>
</mat-tab-group>
</mat-card>
</div>
</div>