Web Components 트리 그리드를 Excel 서비스로 내보내기
Web Components 트리 그리드의 Ignite UI for Web Components Export to Excel Service는 데이터를 Excel로 내보낼 수 있습니다. 데이터 내보내기 기능은 ExcelExporterService
클래스와 데이터는 MS Excel 테이블 형식으로 내보내집니다. 이 형식은 필터링, 정렬 등과 같은 기능을 허용합니다. 이렇게하려면 Export
의 방법 ExcelExporterService
그리고 IgcTreeGridComponent
구성 요소를 그리드를 쉽게 내보내기 위한 첫 번째 인수로 사용합니다.
Web Components Excel Exporter Example
Export Multi Column Headers Grid
이제 내보낼 수 있습니다. IgcTreeGridComponent
정의된 다중 열 머리글. 모든 헤더는 내보낸 Excel 파일에 표시되는 대로 반영됩니다. IgcTreeGridComponent
. 내보낸 데이터에서 정의된 다중 열 헤더를 제외하려면 ExporterOption
IgnoreMultiColumnHeaders
받는 사람 true
.
[!Note] The exported
IgcTreeGridComponent
will not be formatted as a table, since Excel tables do not support multiple column headers.
Export Grid with Frozen Column Headers
기본적으로 Excel 내보내기 서비스는 스크롤 가능한(고정 해제된) 열 머리글과 함께 그리드를 내보냅니다. 사용자가 레코드를 스크롤할 때 항상 표시되도록 내보낸 Excel 파일 위에 모든 헤더를 고정하려는 시나리오가 있습니다. 이를 달성하려면 ExporterOption
FreezeHeaders
true
로 설정할 수 있습니다.
constructor() {
var gridToolbarExporter1 = document.getElementById('gridToolbarExporter1') as IgcGridToolbarExporterComponent;
gridToolbarExporter1.addEventListener("exportStarted", this.webGridExportEventFreezeHeaders);
}
public webGridExportEventFreezeHeaders(args: any): void {
args.detail.options.freezeHeaders = true;
}
Known Limitations
한정 | 설명 |
---|---|
계층 수준 | Excel 내보내기 서비스는 최대 8개 수준의 계층 구조를 생성할 수 있습니다. |
최대 워크시트 크기 | Excel에서 지원되는 최대 워크시트 크기는 1,048,576행 x 16,384열입니다. |
셀 스타일링 | Excel 내보내기 서비스는 셀 구성 요소에 적용된 사용자 정의 스타일 내보내기를 지원하지 않습니다. 이러한 시나리오에서는 Excel 라이브러리를 사용하는 것이 좋습니다. |
API References
ExcelExporterService
ExcelExporterOptions
IgcTreeGridComponent
Additional Resources
우리 커뮤니티는 활동적이며 항상 새로운 아이디어를 환영합니다.