48 lines
1.4 KiB
HTML
48 lines
1.4 KiB
HTML
<div class="fade-in" xmlns="http://www.w3.org/1999/html">
|
|
|
|
<mat-button-toggle-group class="chart-select-group"
|
|
#group="matButtonToggleGroup"
|
|
[(ngModel)]="activeChartSelect"
|
|
(change)="selectChart(group.value)">
|
|
<mat-button-toggle *ngFor="let label of labelsAsString" value="{{label}}">
|
|
{{label}}
|
|
</mat-button-toggle>
|
|
</mat-button-toggle-group>
|
|
|
|
<div *ngIf="showLineChart" class="chart-container">
|
|
<ngx-charts-line-chart
|
|
[scheme]="colorScheme"
|
|
[results]="lineChartData"
|
|
[gradient]="gradient"
|
|
[xAxis]="xAxis"
|
|
[yAxis]="yAxis"
|
|
[legend]="legend"
|
|
[legendTitle]="legendTitle"
|
|
[showXAxisLabel]="showXAxisLabel"
|
|
[showYAxisLabel]="showYAxisLabel"
|
|
[yAxisLabel]="lineChartLabel"
|
|
[autoScale]="autoscale"
|
|
[timeline]="timeline"
|
|
[roundDomains]="roundDomains">
|
|
</ngx-charts-line-chart>
|
|
</div>
|
|
|
|
<div *ngIf="!showLineChart" class="chart-container">
|
|
<ngx-charts-area-chart
|
|
[scheme]="colorScheme"
|
|
[results]="areaChartData"
|
|
[xAxis]="xAxis"
|
|
[yAxis]="yAxis"
|
|
[curve]="stepCurve"
|
|
[legend]="legend"
|
|
[legendTitle]="legendTitle"
|
|
[showXAxisLabel]="showXAxisLabel"
|
|
[showYAxisLabel]="showYAxisLabel"
|
|
[yAxisLabel]="labelFlag"
|
|
[autoScale]="autoscale"
|
|
[timeline]="timeline"
|
|
[roundDomains]="false">
|
|
</ngx-charts-area-chart>
|
|
</div>
|
|
</div>
|