Skip to content

Commit

Permalink
fix: 修复明细表列头换行高度问题
Browse files Browse the repository at this point in the history
  • Loading branch information
lijinke666 committed Nov 10, 2023
1 parent 10fa34a commit bb5fa82
Show file tree
Hide file tree
Showing 10 changed files with 5,108 additions and 239 deletions.
9 changes: 8 additions & 1 deletion packages/s2-core/__tests__/data/data-multi-line-text.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { S2DataConfig } from '../../src';

export const MultiLineTextDataCfg: S2DataConfig = {
export const PivotSheetMultiLineTextDataCfg: S2DataConfig = {
fields: {
rows: ['province', 'city'],
columns: ['type', 'sub_type'],
Expand Down Expand Up @@ -523,3 +523,10 @@ export const MultiLineTextDataCfg: S2DataConfig = {
},
],
};

export const TableSheetMultiLineTextDataCfg = {
...PivotSheetMultiLineTextDataCfg,
fields: {
columns: ['province', 'city', 'type', 'sub_type', 'number'],
},
};
Loading

0 comments on commit bb5fa82

Please sign in to comment.