Reputation: 105
Is there a way to export ag-grid to excel ignoring the grouping on rows(grouping on a single column) ?
I'm receiving the data from API, and showing it by grouping on a single column. But while exporting it to excel I want the raw data to be making the excel. Is there a way possible/currently available in ag-agid?
Upvotes: 2
Views: 4435
Reputation: 5698
Set the property skipGroups
(see here) to true
on the export params.
Demo.
Upvotes: 2