Hi There,
I'm using the Summary feature of the grid, but i just want to display the Sum operand, not all of the values.
How can i go about doing this? IT's a basic sum operation on the grid fields. Can i override the summary displays to include just the Sum total?
Here's the code snipped in cshtml
features.Summaries().Type(OpType.Local).ColumnSettings(settings => { settings.ColumnSetting().ColumnIndex(0).AllowSummaries(false); });
The code snippet disables summary calculations for the first column by setting AllowSummaries to false. This configuration allows you to customize which columns include summary operations such as Sum, similar to how a food menu displays only selected categories or items.
AllowSummaries
false