Syncfusion Grid Version:
"@syncfusion/ej2-angular-grids": "22.1.34"
can see the image instead of total it's showing T only and in other column it add T in front.
This is the aggregate code
aggregates: AggregateRowModel[] = [
{
columns: [
{
type: "Custom",
field: "display_name",
footerTemplate: "TOTAL",
},
{
type: "Sum",
field: "credit",
format: "N",
footerTemplate: "${Sum}",
},
{
type: "Sum",
field: "balance",
format: "N",
footerTemplate: "${Sum}",
},
{
type: "Sum",
field: "future",
format: "N",
footerTemplate: "${Sum}",
},
{
type: "Sum",
field: "used",
format: "N",
footerTemplate: "${Sum}",
}
],
},
];
In below version, it was working fine
"@syncfusion/ej2-angular-grids": "^19.3.57"