-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2965c72
commit 156c370
Showing
3 changed files
with
17 additions
and
21 deletions.
There are no files selected for viewing
26 changes: 11 additions & 15 deletions
26
src/app/components/timeseries-chart/timeseries-chart.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,13 @@ | ||
|
||
<div #tsChartWrapper class="chart-wrapper" (resized)="onResized()"> | ||
<div #timeseriesChart id="timeseriesChart" > | ||
<app-chart-modal class="ts-chart-config-button"></app-chart-modal> | ||
<app-timeseries-chart-zoom class="ts-chart-zoom" | ||
(zoomInEvent)="onZoomIn()" | ||
(zoomOutEvent)="onZoomOut()" | ||
(zoomToFitEvent)="onZoomToFit()" | ||
></app-timeseries-chart-zoom> | ||
<div #timeseriesChart id="timeseriesChart"> | ||
</div> | ||
<app-chart-modal class="ts-chart-config-button"></app-chart-modal> | ||
<app-timeseries-chart-zoom class="ts-chart-zoom" (zoomInEvent)="onZoomIn()" (zoomOutEvent)="onZoomOut()" | ||
(zoomToFitEvent)="onZoomToFit()"></app-timeseries-chart-zoom> | ||
|
||
</div> | ||
@if(isLoading){ | ||
<div class="disp-spinner"> | ||
<mat-spinner></mat-spinner> | ||
</div> | ||
} | ||
</div> | ||
@if(isLoading){ | ||
<div class="disp-spinner"> | ||
<mat-spinner></mat-spinner> | ||
</div> | ||
} | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters