19 lines
651 B
HTML
19 lines
651 B
HTML
<div class="animated fadeIn">
|
|
<snippet-bar-cust></snippet-bar-cust>
|
|
<div class="row">
|
|
<div *ngFor="let widget of widgetList" class="col-sm-6 col-lg-3">
|
|
<widget-graph *ngIf="widget.type == 'graph'"
|
|
[graphName]="widget.name"
|
|
[graphTitle]="widget.title"
|
|
[graphIcon]="widget.icon"
|
|
[dataType]="widget.dataType">
|
|
</widget-graph>
|
|
</div><!--/.col-->
|
|
</div><!--/.row-->
|
|
<!-- http://www.chartjs.org/docs/latest/charts/polar.html?h=polar -->
|
|
<div class=row>
|
|
<div class="col-12 col-md-4 no-gutters">
|
|
<panel-pie></panel-pie>
|
|
</div>
|
|
</div>
|
|
</div>
|