12 lines
564 B
HTML
12 lines
564 B
HTML
<div class="{{elevation}} tui-card">
|
|
<div class="tui-card-title">{{title}}</div>
|
|
<div class="tui-card-content">
|
|
<div fxLayout="row" fxLayoutAlign="space-between stretch">
|
|
<app-donut-chart [elementID]="chartID" fxFlex="30" [title]="title"></app-donut-chart>
|
|
<div class="items" fxLayout="column" fxLayoutAlign="start end" fxFlex="70">
|
|
<app-chart-item *ngFor="let state of states" [state]="state.label" [count]="state.count">
|
|
</app-chart-item>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div> |