Upgrade to Angular 17

This commit is contained in:
softsimon
2024-03-24 16:22:05 +09:00
parent 1b21cd89a3
commit 6310ef7f57
10 changed files with 4969 additions and 5892 deletions

View File

@@ -265,8 +265,8 @@ export class IncomingTransactionsGraphComponent implements OnInit, OnChanges, On
type: 'value',
axisLabel: {
fontSize: 11,
formatter: (value) => {
return this.weightMode ? value * 4 : value;
formatter: (value): string => {
return this.weightMode ? (value * 4).toString() : value.toString();
}
},
splitLine: {