refactor: pivot-grid 컴포넌트 개선
This commit is contained in:
parent
551e893f15
commit
a52ab0b206
|
|
@ -236,3 +236,4 @@ pivot-grid/
|
|||
2. **멀티테넌시**: `autoFilter.companyCode`를 통해 회사별 데이터 격리가 적용됩니다.
|
||||
3. **필드 순서**: `areaIndex`를 통해 영역 내 필드 순서를 지정하세요.
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -343,3 +343,4 @@ export interface PivotGridComponentConfig {
|
|||
exportConfig?: PivotExportConfig;
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -173,3 +173,4 @@ export function getAggregationLabel(type: AggregationType): string {
|
|||
return labels[type] || "합계";
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
export * from "./aggregation";
|
||||
export * from "./pivotEngine";
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -618,3 +618,4 @@ export function processPivotData(
|
|||
};
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue