We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d0ef6e7 commit a1d1ae0Copy full SHA for a1d1ae0
projects/igniteui-angular/src/lib/grids/summaries/grid-summary.service.ts
@@ -86,7 +86,7 @@ export class IgxGridSummaryService {
86
if (!this.grid.data) {return this.summaryHeight = 0; }
87
let maxSummaryLength = 0;
88
this.grid.columnList.filter((col) => col.hasSummary && !col.hidden).forEach((column) => {
89
- const getCurrentSummaryColumn = column.summaries.operate([]).length;
+ const getCurrentSummaryColumn = column.summaries.operate([], [], column.field).length;
90
if (getCurrentSummaryColumn) {
91
if (maxSummaryLength < getCurrentSummaryColumn) {
92
maxSummaryLength = getCurrentSummaryColumn;
0 commit comments