mirror of
https://github.com/mempool/mempool.git
synced 2025-01-09 23:16:48 +01:00
9b956ff88d
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;
20 lines
607 B
HTML
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>
|