euro symbol

This commit is contained in:
Bastian Wagner
2026-08-03 11:40:42 +02:00
parent 862a1bea8d
commit 71d76725a4

View File

@@ -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 = {