region-graph.component.html 358 B

12345678
  1. <div class="card">
  2. <h3>Detailed overview of {{region}}</h3>
  3. <div class="plot-place card-body" *ngIf="dataLoaded; else loading">
  4. <plotly-plot [data]="data" [layout]="plotlyLayout" [config]="plotlyConfig" [className]="'plotly-plot'"
  5. [useResizeHandler]="true"></plotly-plot>
  6. </div>
  7. <ng-template #loading> Loading data... </ng-template>
  8. </div>