-
Notifications
You must be signed in to change notification settings - Fork 2
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
da39454
commit 0b3a5ad
Showing
11 changed files
with
134 additions
and
101 deletions.
There are no files selected for viewing
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
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
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
32 changes: 19 additions & 13 deletions
32
...app/feat-analyse/reportbytag/graph/reportby-testfolder/reportby-testfolder.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,15 +1,21 @@ | ||
|
||
<div class="block block-bordered block-rounded"> | ||
<div class="block-header block-header-default"> | ||
<h3 class="block-title">Report <small>by Test Folder</small></h3> | ||
<button type="button" class="btn-block-option" (click)="expand = !expand"> | ||
<i class="si" [ngClass]="{'si-arrow-down': !expand, 'si-arrow-up': expand}"></i> | ||
</button> | ||
</div> | ||
<div class="block block-bordered block-rounded"> | ||
<div class="block-header block-header-default"> | ||
<h3 class="block-title">Report <small>by Test Folder</small></h3> | ||
<button type="button" class="btn-block-option" (click)="expand = !expand"> | ||
<i class="si" [ngClass]="(expand)? 'si-arrow-up' : 'si-arrow-down'"></i> | ||
</button> | ||
</div> | ||
|
||
<div class="block-content row" *ngIf="expand && chart.datasets"> | ||
<canvas baseChart [datasets]="chart.datasets" [labels]="chart.label" [options]="chart.options" | ||
[plugins]="chart.plugin" [legend]="chart.legend" [chartType]="'bar'"> | ||
</canvas> | ||
</div> | ||
<div class="block-content row" *ngIf="expand && chart.datasets"> | ||
<!-- Chart definition --> | ||
<canvas | ||
baseChart | ||
[datasets]="chart.datasets" | ||
[labels]="chart.label" | ||
[options]="chart.options" | ||
[plugins]="chart.plugin" | ||
[legend]="chart.legend" | ||
[chartType]="'bar'"> | ||
</canvas> | ||
</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
11 changes: 6 additions & 5 deletions
11
src/app/feat-analyse/reportbytag/graph/statistic-duration/statistic-duration.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,19 +1,20 @@ | ||
|
||
<div class="block block-bordered block-rounded"> | ||
<div class="block-header block-header-default"> | ||
<h3 class="block-title">Test Statistics <small>by Duration and Execution</small></h3> | ||
<button type="button" class="btn-block-option" (click)="expand = !expand"> | ||
<i class="si" [ngClass]="{'si-arrow-down': !expand, 'si-arrow-up': expand}"></i> | ||
</button> | ||
<i class="si" [ngClass]="{'si-arrow-down': !expand, 'si-arrow-up': expand}"></i> | ||
</button> | ||
</div> | ||
<div class="block-content row" *ngIf="expand && chart.datasets"> | ||
<div class="block-content row"> | ||
<canvas baseChart | ||
<!-- Chart definition --> | ||
<canvas baseChart | ||
[datasets]="chart.datasets" | ||
[labels]="chart.labels" | ||
[options]="chart.options" | ||
[legend]="chart.legend" | ||
[chartType]="'bar'"></canvas> | ||
[chartType]="'bar'"> | ||
</canvas> | ||
</div> | ||
</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
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