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.
18 lines
687 B
18 lines
687 B
<div class="card card-lg">
|
|
<div class="card-header">
|
|
{{ 'dashboard.trafficHeader' | sqxTranslate }}: {{chartSummary | sqxFileSize}}
|
|
|
|
<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">
|
|
{{ 'dashboard.stackedChart' | sqxTranslate }}
|
|
</label>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="card-body">
|
|
<chart type="bar" [data]="chartData" [options]="chartOptions"></chart>
|
|
</div>
|
|
</div>
|