Files
syncthing/src/app/charts/folder-chart/folder-chart.component.html
T

12 lines
547 B
HTML
Raw Normal View History

<div class="{{elevation}} tui-card">
<div class="tui-card-title">Folders</div>
<div class="tui-card-content">
2020-03-29 16:38:06 -04:00
<div fxLayout="row" fxLayoutAlign="space-between stretch">
<app-donut-chart [elementID]="chartID" fxFlex="30"></app-donut-chart>
<div class="items" fxLayout="column" fxLayoutAlign="start none" fxFlex="70">
<app-chart-item *ngFor="let state of states" [state]="state.label" [count]="state.count">
</app-chart-item>
</div>
</div>
</div>
</div>