opt-cc/static/src/app/statistic/campaign/overview/campaign-overview.component...

37 lines
1.2 KiB
HTML

<div class="slide-chart-container" style="height: 100px;padding-top: 20px; margin-top: 10px;">
<mat-button-toggle-group #viewToggle="matButtonToggleGroup"
[value]="this.id !== 'all' ? '0' : '1'"
(change)="goToSlide(viewToggle.value)">
<mat-button-toggle *ngIf="id != 'all'" value="0">
{{'stats.graph.select.sum.points' | translate}}
</mat-button-toggle>
<mat-button-toggle value="1">
{{'stats.graph.select.battle.points' | translate}}
</mat-button-toggle>
<mat-button-toggle value="2">
{{'stats.graph.select.player.count' | translate}}
</mat-button-toggle>
</mat-button-toggle-group>
</div>
<div class="fade-in">
<div class="slide-chart-container">
<ngx-charts-line-chart
[scheme]="colorScheme"
[results]="currentData"
[gradient]="gradient"
[xAxis]="xAxis"
[yAxis]="yAxis"
[legend]="legend"
[legendTitle]="legendTitle"
[showXAxisLabel]="showXAxisLabel"
[showYAxisLabel]="showYAxisLabel"
[yAxisLabel]="yAxisLabel"
[autoScale]="autoscale"
[timeline]="timeline"
[roundDomains]="roundDomains">
</ngx-charts-line-chart>
</div>
</div>