mirror of
https://github.com/mempool/mempool.git
synced 2025-02-28 16:58:32 +01:00
14 lines
672 B
HTML
14 lines
672 B
HTML
<div class="full-container" [class]="widget ? 'widget' : ''" [class.fit-container]="fitContainer">
|
|
|
|
<div *ngIf="!widget" class="card-header">
|
|
<div class="d-flex d-md-block align-items-baseline" style="margin-bottom: -5px">
|
|
<span i18n="lightning.nodes-world-map">Lightning Nodes World Map</span>
|
|
</div>
|
|
<small style="color: #ffffff66" i18n="lightning.tor-nodes-excluded">(Tor nodes excluded)</small>
|
|
</div>
|
|
|
|
<div *ngIf="observable$ | async" class="chart" [class]="widget ? 'widget' : ''" echarts [initOpts]="chartInitOptions" [options]="chartOptions"
|
|
(chartInit)="onChartInit($event)" (chartFinished)="onChartFinished($event)">
|
|
</div>
|
|
|
|
</div>
|