syncthing/src/app/charts/chart/chart.component.html

14 lines
704 B
HTML
Raw Normal View History

<div class="{{elevation}} tui-card">
<div class="tui-card-title">{{title | uppercase}}</div>
<div class="tui-card-content">
2020-03-29 22:38:06 +02:00
<div fxLayout="row" fxLayoutAlign="space-between stretch">
<app-donut-chart [elementID]="chartID" fxFlex="30" [title]="title" (stateEvent)="onItemSelect($event)">
</app-donut-chart>
<div class=" items" fxLayout="column" fxLayoutAlign="start end" fxFlex="70">
<app-chart-item *ngFor="let state of states" (click)="onItemSelect(state)" [state]="state.label"
[count]="state.count" [selected]="state.selected">
</app-chart-item>
</div>
</div>
</div>
</div>