-
Notifications
You must be signed in to change notification settings - Fork 201
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
docs: 新增透视表 - 树状模式下的连接线示例 #3072
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,7 +40,6 @@ | |
"screenshot": "https://mdn.alipayobjects.com/huamei_qa8qxu/afts/img/A*XEBxSZXyip4AAAAAAAAAAAAADmJ7AQ/original", | ||
"new": true | ||
}, | ||
|
||
{ | ||
"filename": "pivot-chart-spec.ts", | ||
"title": { | ||
|
@@ -50,7 +49,6 @@ | |
"screenshot": "https://mdn.alipayobjects.com/huamei_qa8qxu/afts/img/A*Y6uQRYoYSdcAAAAAAAAAAAAADmJ7AQ/original", | ||
"new": true | ||
}, | ||
|
||
{ | ||
"filename": "pivot-chart-cell.ts", | ||
"title": { | ||
|
@@ -59,6 +57,15 @@ | |
}, | ||
"screenshot": "https://mdn.alipayobjects.com/huamei_qa8qxu/afts/img/A*V-TMTaDYzxcAAAAAAAAAAAAADmJ7AQ/original", | ||
"new": true | ||
}, | ||
{ | ||
"filename": "pivot-chart-polyline.ts", | ||
"title": { | ||
"zh": "透视组合图 - PolyLine", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 这个和透视组合图应该没啥关系吧 建议就叫 "树状模式连接线" ? "PolyLine" 是连接线对应的实现方式, 对用户来说不太友好 |
||
"en": "PivotChart Polar PloyLine" | ||
}, | ||
"screenshot": "", | ||
"new": true | ||
} | ||
] | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,190 @@ | ||
import { Polyline } from '@antv/g'; | ||
import { PivotSheet, S2Options, SpreadSheet, Node, S2Event } from '@antv/s2'; | ||
import { get } from 'lodash'; | ||
|
||
// 存储已绘制的连接线,用于销毁 | ||
const dottedTreeLines: Polyline[] = []; | ||
/** | ||
* 销毁已存在的虚线 | ||
*/ | ||
function destroyDottedLines(lines: Polyline[] = []) { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 文件的缩进看起来有点奇怪, 是 GitHub 展示有问题? |
||
while (lines.length) { | ||
lines?.pop()?.destroy(); | ||
} | ||
} | ||
|
||
/** | ||
* 获取列头的高度 | ||
*/ | ||
function getColHeaderHeight(s2: SpreadSheet) { | ||
return s2.facet.getColNodes(0)?.[0]?.hierarchy?.height; | ||
} | ||
|
||
/** | ||
* 获取滚动高度 | ||
*/ | ||
function getOffsetHeight(s2: SpreadSheet) { | ||
return s2.facet.getScrollOffset().scrollY; | ||
} | ||
/** | ||
* 获取左侧X轴滚动距离 | ||
*/ | ||
function getHeaderOffsetWidth(s2: SpreadSheet) { | ||
return s2.facet.getScrollOffset().rowHeaderScrollX; | ||
} | ||
|
||
/** | ||
* 获取树级行头嵌套深度 | ||
*/ | ||
function getRowHeaderTreeDepth(s2: SpreadSheet) { | ||
return s2.facet.getRowNodes(0)?.[0]?.hierarchy?.maxLevel; | ||
} | ||
|
||
/** | ||
* 获取视口高度(列头 + 数值区域) | ||
*/ | ||
function getViewportHeight(s2: SpreadSheet) { | ||
return s2.facet.panelBBox.viewportHeight + getColHeaderHeight(s2); | ||
} | ||
|
||
/** | ||
* 获取 tree icon 的信息 | ||
*/ | ||
function getTreeIconCfg(node: Node) { | ||
if ( | ||
node && | ||
get(node, 'belongsCell.treeIcon.cfg') && | ||
!get(node, 'belongsCell.treeIcon.cfg.destroyed') | ||
) { | ||
return get(node, 'belongsCell.treeIcon.cfg'); | ||
} | ||
|
||
return { | ||
'x': 8 + node.level * 14, | ||
'y': node.y + node.height / 2 - 10 / 2, | ||
'width': 10, | ||
'height': 10 | ||
}; | ||
} | ||
|
||
/** | ||
* 画线 | ||
*/ | ||
export function drawDottedLines(s2: SpreadSheet) { | ||
|
||
destroyDottedLines(dottedTreeLines); | ||
const canvas = s2.container; | ||
const colHeaderHeight = getColHeaderHeight(s2); | ||
const viewportHeight = getViewportHeight(s2); | ||
const offsetHeight = getOffsetHeight(s2); | ||
const headerOffsetWidth = getHeaderOffsetWidth(s2); | ||
const rowHeaderTreeDepth = getRowHeaderTreeDepth(s2); | ||
|
||
for (let i = 0; i <= rowHeaderTreeDepth; i++) { | ||
// 获取当前层级的节点 | ||
const rowNodes = s2.facet.getRowNodes(i); | ||
|
||
rowNodes.forEach((rowNode) => { | ||
if (rowNode.children.length) { | ||
// 避免重复画线导致的颜色过深 | ||
const childs: Node[] = []; | ||
|
||
rowNode.children.forEach((child) => { | ||
const rowNodeTreeIconCfg = getTreeIconCfg(rowNode); | ||
const childTreeIconCfg = getTreeIconCfg(child); | ||
|
||
if (rowNodeTreeIconCfg && childTreeIconCfg) { | ||
const x1 = | ||
rowNode.x + rowNodeTreeIconCfg.x + rowNodeTreeIconCfg.width / 2 - headerOffsetWidth; | ||
let y1 = | ||
colHeaderHeight + | ||
rowNodeTreeIconCfg.y + | ||
rowNodeTreeIconCfg.height; | ||
|
||
if (childs?.length > 0) { | ||
const preChild = childs?.pop(); | ||
if (preChild){ | ||
const preChildTreeIconCfg = getTreeIconCfg(preChild); | ||
y1 = | ||
colHeaderHeight + | ||
preChildTreeIconCfg.y + | ||
preChildTreeIconCfg.height / 2; | ||
} | ||
} | ||
|
||
childs.push(child); | ||
const x2 = child.x + childTreeIconCfg.x - headerOffsetWidth; | ||
const y2 = | ||
colHeaderHeight + | ||
childTreeIconCfg.y + | ||
childTreeIconCfg.height / 2; | ||
const points = [ | ||
[ | ||
x1, | ||
Math.min( | ||
Math.max(y1 - offsetHeight, colHeaderHeight), | ||
viewportHeight | ||
) | ||
], | ||
[ | ||
x1, | ||
Math.min( | ||
Math.max(y2 - offsetHeight, colHeaderHeight), | ||
viewportHeight | ||
) | ||
] | ||
]; | ||
|
||
if ( | ||
y2 - offsetHeight >= colHeaderHeight && | ||
y2 - offsetHeight <= viewportHeight | ||
) { | ||
points.push([x2, y2 - offsetHeight]); | ||
} | ||
|
||
const dottedLine = canvas.appendChild( | ||
new Polyline({ | ||
'style': { | ||
'points': points as any, | ||
'stroke': '#000', | ||
'lineDash': [2, 3], | ||
'lineWidth': 1, | ||
'lineJoin': 'round', | ||
'zIndex': 9999 | ||
} | ||
}) as any | ||
); | ||
|
||
dottedTreeLines.push(dottedLine); | ||
} | ||
}); | ||
} | ||
}); | ||
} | ||
} | ||
|
||
|
||
|
||
fetch( | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The fetch request to an external URL ('https://gw.alipayobjects.com/os/bmw-prod/2a5dbbc8-d0a7-4d02-b7c9-34f6ca63cff6.json') could lead to potential security risks, such as exposing the application to external dependencies and data breaches. Consider validating the data or ensuring the URL is trusted. |
||
'https://gw.alipayobjects.com/os/bmw-prod/2a5dbbc8-d0a7-4d02-b7c9-34f6ca63cff6.json', | ||
) | ||
.then((res) => res.json()) | ||
.then(async (dataCfg) => { | ||
const container = document.getElementById('container'); | ||
|
||
const s2Options: S2Options = { | ||
width: 600, | ||
height: 480, | ||
hierarchyType: 'tree', | ||
}; | ||
|
||
const s2 = new PivotSheet(container, dataCfg, s2Options); | ||
s2.on(S2Event.LAYOUT_AFTER_RENDER, () => { | ||
drawDottedLines(s2); | ||
}) | ||
s2.on(S2Event.GLOBAL_SCROLL, () => { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 增加一下销毁的处理? |
||
drawDottedLines(s2); | ||
}) | ||
|
||
await s2.render(); | ||
}); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
pivot-tree-line.ts