[DASHBOARDS] Add prefix and suffix setting to the aggregate chart (#16216)

https://github.com/user-attachments/assets/0103cebe-e426-42d0-a8e4-b82494ef8503
This commit is contained in:
Raphaël Bosi
2025-12-01 17:45:25 +01:00
committed by GitHub
parent c51a4a188d
commit 32f387a966
21 changed files with 288 additions and 89 deletions
@@ -73,4 +73,14 @@ export class AggregateChartConfigurationDTO {
@Min(0)
@Max(7)
firstDayOfTheWeek?: number;
@Field(() => String, { nullable: true })
@IsString()
@IsOptional()
prefix?: string;
@Field(() => String, { nullable: true })
@IsString()
@IsOptional()
suffix?: string;
}