• What is KendoReact
  • Getting Started
  • Server Components
  • Components
    • Animation
    • Barcodes
    • Buttons
    • Chartsupdated
    • Common Utilities
    • Conversational UIupdated
    • Data Gridupdated
    • Data Query
    • Data Tools
    • Date Inputs
    • Date Math
    • Dialogs
    • Drawing
    • Dropdownsupdated
    • Editor
    • Excel Export
    • File Saver
    • Formupdated
    • Ganttupdated
    • Gauges
    • Indicators
    • Inputsupdated
    • Labels
    • Layoutupdated
    • ListBox
    • ListView
    • Map
    • Notification
    • OrgChartnew
    • PDF Processing
    • PDFViewer
    • PivotGrid
    • Popup
    • Progress Bars
    • Ripple
    • Scheduler
    • ScrollView
    • Sortable
    • Spreadsheetupdated
    • TaskBoard
    • Tooltips
    • TreeList
    • TreeViewupdated
    • Upload
  • Sample Applications
  • Styling & Themes
  • Common Features
  • Project Setup
  • Knowledge Base
  • Changelog
  • Updates
  • Troubleshooting

aggregateBy<T>

Applies the specified AggregateDescriptors to the data. Returns an AggregateResult instance.

const data = [
   { unitPrice: 23, unitsInStock: 21 },
   { unitPrice: 10, unitsInStock: 12 },
   { unitPrice: 20, unitsInStock: 33 }
];

const result = aggregateBy(data, [
  { aggregate: "sum", field: "unitPrice" },
  { aggregate: "sum", field: "unitsInStock" }
]);

//output:
// {
//     "unitPrice": { "sum": 53 },
//     "unitsInStock": { "sum": 66 }
// }

Parameters

data T[]

The data on which the calculation will be executed.

descriptors AggregateDescriptor[]

The aggregate operations that will be executed.

transformers (reduce: Combinator) => Transformer

For internal use.

Returns

AggregateResult - The aggregated result. For more information, refer to the aggregateresult configuration.

In this article

Not finding the help you need?