From 71d76725a49fc16eb23404acf7bdabf4f6aa5855 Mon Sep 17 00:00:00 2001 From: Bastian Wagner Date: Mon, 3 Aug 2026 11:40:42 +0200 Subject: [PATCH] euro symbol --- .../src/app/features/team/overview/overview.ts | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/myteamwallet_frontend_modern/src/app/features/team/overview/overview.ts b/myteamwallet_frontend_modern/src/app/features/team/overview/overview.ts index ef48edb..cb57dfa 100644 --- a/myteamwallet_frontend_modern/src/app/features/team/overview/overview.ts +++ b/myteamwallet_frontend_modern/src/app/features/team/overview/overview.ts @@ -126,6 +126,15 @@ export class Overview { responsive: true, maintainAspectRatio: false, plugins: { legend: { position: 'bottom' } }, + scales: { + y: { + ticks: { + callback: function(value, index, ticks) { + return value.toLocaleString() + '€'; + } + } + } + } }; protected readonly flowChartOptions: ChartOptions = {