Returns the average numeric value in the data provided data records.
If filtering is applied, returns the average numeric value in the filtered data records.
IgxSummaryOperand.average(data);
Memberof
IgxNumberSummaryOperand
Parameters
data: any[]
Returns number
Staticcount
count(data): number
Counts all the records in the data source.
If filtering is applied, counts only the filtered records.
IgxSummaryOperand.count(dataSource);
Memberof
IgxSummaryOperand
Parameters
data: any[]
Returns number
Staticmax
max(data): number
Returns the maximum numeric value in the provided data records.
If filtering is applied, returns the maximum value in the filtered data records.
IgxNumberSummaryOperand.max(data);
Memberof
IgxNumberSummaryOperand
Parameters
data: any[]
Returns number
Staticmin
min(data): number
Returns the minimum numeric value in the provided data records.
If filtering is applied, returns the minimum value in the filtered data records.
IgxNumberSummaryOperand.min(data);
Memberof
IgxNumberSummaryOperand
Parameters
data: any[]
Returns number
Staticsum
sum(data): number
Returns the sum of the numeric values in the provided data records.
If filtering is applied, returns the sum of the numeric values in the data records.
Executes the static methods and returns
IgxSummaryResult[]
.Can be overridden in the inherited classes to provide customization for the
summary
.