Début pour avoir un graphique avec les types

de vol en tunnel
This commit is contained in:
Sébastien ANDRE
2023-08-22 13:24:52 +02:00
parent 7abfa2b2b7
commit 76c8497c13
2 changed files with 40 additions and 8 deletions

View File

@@ -48,10 +48,12 @@ export class TunnelFlight {
export class TunnelFlightByMonth {
constructor(data: any) {
this.month = data.label;
this.type = data.label2;
this.nb = data.nb;
}
public month: string;
public type: string;
public nb: number;
}
@@ -61,5 +63,6 @@ export class TunnelFlightByMonthResp {
}
public label: string;
public label2: string;
public nb: number;
}