mempool/frontend/src/app/components/television/television.component.html
Miguel Medeiros 9b956ff88d
Add new component incoming-transactions-graph;
Refactor component mempool-graph;
Refactor component fee-distribution-graph;
Add incoming-transactions-graph to dashboard;
Add incoming-transactions-graph to statistics;
Add incoming-transactions-graph to television;
Add mempool-graph to dashboard;
Add mempool-graph to statistics;
Add mempool-graph to television;
Remove chartist.component;
2021-09-14 22:35:47 -03:00

20 lines
607 B
HTML

<div id="tv-wrapper">
<div *ngIf="mempoolStats.length === 0" class="loading">
<div class="spinner-border text-light"></div>
</div>
<div class="tv-container" *ngIf="mempoolStats.length">
<div class="chart-holder" >
<app-mempool-graph dir="ltr" [data]="mempoolStats" [limitFee]="1200" [height]="600"></app-mempool-graph>
</div>
<div class="blockchain-wrapper">
<div class="position-container">
<app-mempool-blocks></app-mempool-blocks>
<app-blockchain-blocks></app-blockchain-blocks>
<div id="divider"></div>
</div>
</div>
</div>
</div>