-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added adminLTE makeover and making it finally look like a widget
- Loading branch information
1 parent
a3e7adb
commit 26d4f4d
Showing
2 changed files
with
19 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,15 @@ | ||
<p-chart #chart *ngIf="isDataAvailable" type="bar" [data]="data" [options]="options"></p-chart> | ||
<div class="col-md 8" *ngIf="isDataAvailable"> | ||
<div class="box box-success"> | ||
<div class="box-header with-border"> | ||
<h3 class="box-title pull-left">{{title}}</h3> | ||
<div class="box-tools pull-right"> | ||
<button type="button" class="btn btn-box-tool" data-widget="collapse"><i class="fa fa-minus"></i> | ||
</button> | ||
<button type="button" class="btn btn-box-tool" data-widget="remove"><i class="fa fa-times"></i></button> | ||
</div> | ||
</div> | ||
<div class="box-body no-padding"> | ||
<p-chart #chart type="bar" [data]="data" [options]="options"></p-chart> | ||
</div> | ||
</div> | ||
</div> |