mirror of
https://github.com/MikroWizard/mikrofront.git
synced 2025-12-28 21:09:31 +00:00
56 lines
1.6 KiB
HTML
56 lines
1.6 KiB
HTML
<c-row>
|
|
<c-col xl="2" lg="4" sm="6">
|
|
<c-widget-stat-e
|
|
[title]="'title'"
|
|
[value]="'1,123'"
|
|
class="mb-4"
|
|
>
|
|
<c-chart [data]="data[0]" [options]="barOptions" class="mx-auto" height="40" width="80"></c-chart>
|
|
</c-widget-stat-e>
|
|
</c-col>
|
|
<c-col xl="2" lg="4" sm="6">
|
|
<c-widget-stat-e
|
|
[title]="'title'"
|
|
[value]="'1,123'"
|
|
class="mb-4"
|
|
>
|
|
<c-chart [data]="data[1]" [options]="barOptions" class="mx-auto" height="40" width="80"></c-chart>
|
|
</c-widget-stat-e>
|
|
</c-col>
|
|
<c-col xl="2" lg="4" sm="6">
|
|
<c-widget-stat-e
|
|
[title]="'title'"
|
|
[value]="'1,123'"
|
|
class="mb-4"
|
|
>
|
|
<c-chart [data]="data[2]" [options]="barOptions" class="mx-auto" height="40" width="80"></c-chart>
|
|
</c-widget-stat-e>
|
|
</c-col>
|
|
<c-col xl="2" lg="4" sm="6">
|
|
<c-widget-stat-e
|
|
[title]="'title'"
|
|
[value]="'1,123'"
|
|
class="mb-4"
|
|
>
|
|
<c-chart [data]="data[3]" [options]="lineOptions" class="mx-auto" height="40" type="line" width="80"></c-chart>
|
|
</c-widget-stat-e>
|
|
</c-col>
|
|
<c-col xl="2" lg="4" sm="6">
|
|
<c-widget-stat-e
|
|
[title]="'title'"
|
|
[value]="'1,123'"
|
|
class="mb-4"
|
|
>
|
|
<c-chart [data]="data[4]" [options]="lineOptions" class="mx-auto" height="40" type="line" width="80"></c-chart>
|
|
</c-widget-stat-e>
|
|
</c-col>
|
|
<c-col xl="2" lg="4" sm="6">
|
|
<c-widget-stat-e
|
|
[title]="'title'"
|
|
[value]="'1,123'"
|
|
class="mb-4"
|
|
>
|
|
<c-chart [data]="data[5]" [options]="lineOptions" class="mx-auto" height="40" type="line" width="80"></c-chart>
|
|
</c-widget-stat-e>
|
|
</c-col>
|
|
</c-row>
|