このイベントは列がエクスポートされるときに発生します。
this.exporterService.columnExporting.subscribe((args: IColumnExportingEventArgs) => {
// put event handler code here
});
このイベントは、エクスポート処理が終了したときに発生します。
this.exporterService.exportEnded.subscribe((args: IExcelExportEndedEventArgs) => {
// put event handler code here
});
このイベントは行がエクスポートされるときに発生します。
this.exporterService.rowExporting.subscribe((args: IRowExportingEventArgs) => {
// put event handler code here
});
IgxGrid コンポーネントのデータをエクスポートするメソッドです。
this.exporterService.export(this.igxGridForExport, this.exportOptions);
任意の配列のデータをエクスポートするメソッドです。
this.exporterService.exportData(this.arrayForExport, this.exportOptions);
Ignite UI for Angular Excel Exporter Service - ヘルプ
Ignite UI for Angular Excel Exporter サービスは、Microsoft® Excel® 形式で生データ (配列) または
IgxGrid
からデータをエクスポートします。例: