-
Notifications
You must be signed in to change notification settings - Fork 199
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(perf): 优化 dataset 数据结构转化性能 (#2379)
Co-authored-by: JuZe <[email protected]> Co-authored-by: Wenjun Xu <[email protected]> Co-authored-by: Jinke Li <[email protected]> Co-authored-by: NoobNot <[email protected]> Co-authored-by: lijinke666 <[email protected]> Co-authored-by: semantic-release-bot <[email protected]> Co-authored-by: zishang <[email protected]> fix: 修复树状模式下总计节点的指标节点没有被格式化数据 (#2353) fix(layout): 修复隐藏结点时对父节点的布局计算错误 close #2355 (#2360) fix(layout): 修复隐藏结点时对父节点的布局计算错误 close #2355 close #2362 (#2363) fix(table-sheet): 明细表数据为空时错误的展示一行空数据 close #2255 (#2357) fix(table-sheet): 明细表数据为空时错误的展示一行空数据 close #2255 fix: 列头绘制多列文本时错误的使用了数值单元格的样式 close #2359 (#2364) fix: 修复分组汇总时,按汇总排序获取排序数据为空 (#2370)
- Loading branch information
1 parent
0fcc8fd
commit 924da53
Showing
109 changed files
with
4,688 additions
and
4,260 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,62 +1,22 @@ | ||
export const dataCustomTrees = [ | ||
{ | ||
'measure-a': 1, | ||
type: '家具', | ||
sub_type: '桌子', | ||
}, | ||
{ | ||
'measure-a': 1, | ||
'measure-b': 2, | ||
type: '家具', | ||
sub_type: '桌子', | ||
}, | ||
{ | ||
'measure-c': 3, | ||
type: '家具', | ||
sub_type: '桌子', | ||
}, | ||
{ | ||
'measure-d': 4, | ||
type: '家具', | ||
sub_type: '桌子', | ||
}, | ||
{ | ||
'measure-e': 5, | ||
type: '家具', | ||
sub_type: '桌子', | ||
}, | ||
{ | ||
'measure-f': 6, | ||
type: '家具', | ||
sub_type: '桌子', | ||
}, | ||
{ | ||
'measure-a': 11, | ||
type: '家具', | ||
sub_type: '椅子', | ||
}, | ||
{ | ||
'measure-a': 11, | ||
'measure-b': 22, | ||
type: '家具', | ||
sub_type: '椅子', | ||
}, | ||
{ | ||
'measure-c': 33, | ||
type: '家具', | ||
sub_type: '椅子', | ||
}, | ||
{ | ||
'measure-d': 44, | ||
type: '家具', | ||
sub_type: '椅子', | ||
}, | ||
{ | ||
'measure-e': 55, | ||
type: '家具', | ||
sub_type: '椅子', | ||
}, | ||
{ | ||
'measure-f': 66, | ||
type: '家具', | ||
sub_type: '椅子', | ||
}, | ||
]; |
Oops, something went wrong.