Closed
Description
Is your feature request related to a problem? Please describe.
Depending on a business logic, a value from column X may be needed to calculate summaries for column Y. For example, lets define a custom summary:
class MySummary extends IgxNumberSummaryOperand {
operate(data?: any[]): IgxSummaryResult[] {
// data only contains the data for the corresponding column Y
// some would like to access value from column X for the given record
return result;
}
}
Describe the solution you'd like
When the operate method is called, have the option to access other fields data as well.
Describe alternatives you've considered
A complete manual calculating of sumamries that is rendered inside the grid footer. Makes no use of igxGrid Summaries
Activity