Add zoom tools. Add different theme for charts `big` and `small` (default). Fix date format on mouseover. Fix animations on graphs page. Fix overflow tv page. Remove `crosshair` on mouseover, changed to `line`. Fix custom tooltip styles. Remove inverted button (will add in a future PR). Remove fee range labels (will add in a future PR). Fix e2e testing.
27 lines
688 B
HTML
27 lines
688 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"
|
|
[size]="'big'"
|
|
[limitFee]="1200"
|
|
[height]="500"
|
|
[left]="60"
|
|
[data]="mempoolStats"
|
|
></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>
|