IgrGrid では Excel へのエクスポート時に規定の設定では非表示列が除外されます。
非表示列も含めて Excel へエクスポートするには、IgrGridToolbarExporter の onExportStarted イベントをハンドリングし、引数よりエクスポートオプションとして ignoreColumnsVisibility プロパティを true に設定します。
<IgrGrid .....>
<IgrGridToolbar>
<IgrGridToolbarActions>
<IgrGridToolbarExporter
onExportStarted={onExportStarted}
></IgrGridToolbarExporter>
</IgrGridToolbarActions>
</IgrGridToolbar>
.....
</IgrGrid>
const onExportStarted = (args: IgrExporterEventArgs) => {
args.detail.options.ignoreColumnsVisibility = true;
};