37 lines
1.1 KiB
HTML
37 lines
1.1 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">
|
||
|
Gesamtpunktzahl
|
||
|
</mat-button-toggle>
|
||
|
<mat-button-toggle value="1">
|
||
|
Punkte je Schlacht
|
||
|
</mat-button-toggle>
|
||
|
<mat-button-toggle value="2">
|
||
|
Spielerzahlen
|
||
|
</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>
|
||
|
|