This event is emitted when a row is exported.
this.exporterService.rowExporting.subscribe((args: IRowExportingEventArgs) => {
// put event handler code here
});
Method for exporting IgxGrid component's data.
this.exporterService.export(this.igxGridForExport, this.exportOptions);
Method for exporting any kind of array data.
this.exporterService.exportData(this.arrayForExport, this.exportOptions);
This event is emitted when a column is exported.