mirror of
https://github.com/akveo/ngx-admin.git
synced 2026-02-12 11:24:20 +01:00
pieChart component
This commit is contained in:
parent
945cdb7e4f
commit
1b08462bb9
8 changed files with 181 additions and 1 deletions
17
src/app/pages/dashboard/pieChart/pieChart.html
Normal file
17
src/app/pages/dashboard/pieChart/pieChart.html
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
<div class="row pie-charts">
|
||||
|
||||
<ba-card *ngFor="#chart of charts" class="pie-chart-item-container col-xlg-6 col-lg-6 col-md-6 col-sm-12 col-xs-12">
|
||||
|
||||
<div class="pie-chart-item">
|
||||
<div class="chart" [attr.data-rel]="chart.color" data-percent="60">
|
||||
<span class="percent"></span>
|
||||
</div>
|
||||
<div class="description">
|
||||
<div>{{ chart.description }}</div>
|
||||
<div class="description-stats">{{ chart.stats }}</div>
|
||||
</div>
|
||||
<i class="chart-icon i-{{ chart.icon }}"></i>
|
||||
</div>
|
||||
|
||||
</ba-card>
|
||||
</div>
|
||||
Loading…
Add table
Add a link
Reference in a new issue