|
|
|
@ -55,6 +55,23 @@ export class DashboardPageComponent implements OnDestroy, OnInit { |
|
|
|
public app = this.appsState.selectedApp.pipe(filter(x => !!x), map(x => <AppDto>x)); |
|
|
|
|
|
|
|
public chartOptions = { |
|
|
|
responsive: true, |
|
|
|
scales: { |
|
|
|
xAxes: [{ |
|
|
|
display: true, |
|
|
|
stacked: false |
|
|
|
}], |
|
|
|
yAxes: [{ |
|
|
|
ticks: { |
|
|
|
beginAtZero: true |
|
|
|
}, |
|
|
|
stacked: false |
|
|
|
}] |
|
|
|
}, |
|
|
|
maintainAspectRatio: false |
|
|
|
}; |
|
|
|
|
|
|
|
public stackedChartOptions = { |
|
|
|
responsive: true, |
|
|
|
scales: { |
|
|
|
xAxes: [{ |
|
|
|
|