mirror of https://github.com/Squidex/squidex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
664 B
20 lines
664 B
<div class="card card-lg">
|
|
<div class="card-header">
|
|
Traffic (MB): {{chartSummary | sqxFileSize}} total
|
|
|
|
<div class="float-right">
|
|
<div class="form-check">
|
|
<input class="form-check-input" type="checkbox" id="stacked"
|
|
[ngModel]="isStacked"
|
|
(ngModelChange)="isStackedChange.emit($event)" />
|
|
|
|
<label class="form-check-label" for="stacked">
|
|
Stacked
|
|
</label>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="card-body">
|
|
<chart type="bar" [data]="chartData" [options]="chartOptions"></chart>
|
|
</div>
|
|
</div>
|