mirror of
https://gitee.com/antv/g6.git
synced 2024-12-05 05:09:07 +08:00
chore: modify tree graph demo
This commit is contained in:
parent
424b5fccec
commit
c521b7926f
@ -51,27 +51,32 @@
|
|||||||
modes: {
|
modes: {
|
||||||
default: ['collapse-expand', 'drag-canvas']
|
default: ['collapse-expand', 'drag-canvas']
|
||||||
},
|
},
|
||||||
defaultNode: {
|
|
||||||
size: 16,
|
|
||||||
anchorPoints: [[0,0.5], [1,0.5]]
|
|
||||||
},
|
|
||||||
defaultEdge: {
|
|
||||||
shape: 'cubic-horizontal'
|
|
||||||
},
|
|
||||||
nodeStyle: {
|
|
||||||
default: {
|
|
||||||
fill: '#40a9ff',
|
|
||||||
stroke: '#096dd9'
|
|
||||||
}
|
|
||||||
},
|
|
||||||
edgeStyle: {
|
|
||||||
default: {
|
|
||||||
stroke: '#A3B1BF'
|
|
||||||
}
|
|
||||||
},
|
|
||||||
fitView: true,
|
fitView: true,
|
||||||
layout: layouts.dendrogram
|
layout: layouts.dendrogram
|
||||||
});
|
});
|
||||||
|
graph.node(node => {
|
||||||
|
return {
|
||||||
|
size: 16,
|
||||||
|
anchorPoints: [[0,0.5], [1,0.5]],
|
||||||
|
style: {
|
||||||
|
fill: '#40a9ff',
|
||||||
|
stroke: '#096dd9'
|
||||||
|
},
|
||||||
|
label: node.id,
|
||||||
|
labelCfg: {
|
||||||
|
position: node.children && node.children.length > 0 ? 'left' : 'right'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
let i = 0;
|
||||||
|
graph.edge(() => {
|
||||||
|
i++;
|
||||||
|
return {
|
||||||
|
shape: 'cubic-horizontal',
|
||||||
|
color: '#A3B1BF',
|
||||||
|
label: i
|
||||||
|
}
|
||||||
|
});
|
||||||
const data = {
|
const data = {
|
||||||
isRoot: true,
|
isRoot: true,
|
||||||
id: 'Root',
|
id: 'Root',
|
||||||
|
Loading…
Reference in New Issue
Block a user