2020-03-27 21:51:24 -04:00
|
|
|
<div class="{{elevation}} tui-card">
|
|
|
|
|
<div class="tui-card-title">Folders</div>
|
|
|
|
|
<div class="tui-card-content">
|
2020-03-19 20:12:58 -04:00
|
|
|
<div fxLayout="row" fxLayoutAlign="space-between start">
|
|
|
|
|
<app-donut-chart [elementID]="chartID"></app-donut-chart>
|
2020-03-20 12:32:10 -04:00
|
|
|
<div class="items" fxLayout="column" fxLayoutAlign="space-evenly end">
|
2020-03-24 13:18:01 -04:00
|
|
|
<app-chart-item *ngFor="let state of states" [state]="state.label" [count]="state.count">
|
2020-03-20 12:32:10 -04:00
|
|
|
</app-chart-item>
|
2020-03-19 20:12:58 -04:00
|
|
|
</div>
|
|
|
|
|
</div>
|
2020-03-27 21:51:24 -04:00
|
|
|
</div>
|
|
|
|
|
</div>
|