mempool/frontend/src/app/lightning/nodes-channels-map/nodes-channels-map.component.html

15 lines
651 B
HTML
Raw Normal View History

2022-08-11 17:19:12 +00:00
<div [class]="'full-container ' + style + (fitContainer ? ' fit-container' : '')">
2022-07-23 15:43:38 +02:00
<div *ngIf="style === 'graph'" class="card-header">
<div class="d-flex d-md-block align-items-baseline" style="margin-bottom: -5px">
<span i18n="lightning.nodes-channels-world-map">Lightning nodes channels world map</span>
</div>
<small style="color: #ffffff66" i18n="lightning.tor-nodes-excluded">(Tor nodes excluded)</small>
</div>
<div *ngIf="observable$ | async" class="chart" echarts [initOpts]="chartInitOptions" [options]="chartOptions"
2022-08-11 17:19:12 +00:00
(chartInit)="onChartInit($event)" (chartFinished)="onChartFinished($event)">
</div>
</div>