Need help in finding footer sum of kendo-grid angular.
<kendo-grid [data]="gridData">
<ng-template ngFor [ngForOf]="columns" let-column>
<kendo-grid-column field="{{column}}">
<ng-template kendoGridFooterTemplate>
{{aggregate[column.value].sum}}
</ng-template>
</kendo-grid-column>
</ng-template>
I expect the output of a grid with columns and corresponding sum of each column in the footer.
The output is showing only grid without the footer.
