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

15 lines
568 B
HTML
Raw Normal View History

2022-07-23 19:03:12 +02:00
<div [class]="'full-container ' + style">
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"
(chartInit)="onChartInit($event)">
</div>
</div>