mirror of
https://gitee.com/antv/g6.git
synced 2024-12-16 02:21:25 +08:00
77 lines
1.8 KiB
JavaScript
77 lines
1.8 KiB
JavaScript
|
import G6 from '@antv/g6';
|
||
|
|
||
|
const container = document.getElementById('container');
|
||
|
const descriptionDiv = document.createElement('div');
|
||
|
descriptionDiv.innerHTML = `正在渲染大规模数据,请稍等……`;
|
||
|
container.appendChild(descriptionDiv);
|
||
|
const width = container.scrollWidth;
|
||
|
const height = container.scrollHeight || 500;
|
||
|
const graph = new G6.Graph({
|
||
|
container: 'container',
|
||
|
width,
|
||
|
height,
|
||
|
defaultNode: {
|
||
|
size: 2,
|
||
|
style: {
|
||
|
fill: '#C6E5FF',
|
||
|
stroke: '#5B8FF9',
|
||
|
lineWidth: 0.3,
|
||
|
},
|
||
|
labelCfg: {
|
||
|
style: {
|
||
|
fontSize: 3,
|
||
|
},
|
||
|
position: 'right',
|
||
|
offset: 1,
|
||
|
},
|
||
|
},
|
||
|
defaultEdge: {
|
||
|
size: 0.1,
|
||
|
color: '#333',
|
||
|
opacity: 0.2,
|
||
|
},
|
||
|
nodeStateStyles: {
|
||
|
selected: {
|
||
|
fill: 'steelblue',
|
||
|
stroke: '#000',
|
||
|
lineWidth: 1,
|
||
|
},
|
||
|
},
|
||
|
modes: {
|
||
|
default: [
|
||
|
{
|
||
|
type: 'zoom-canvas',
|
||
|
enableOptimize: true,
|
||
|
optimizeZoom: 0.9,
|
||
|
},
|
||
|
{
|
||
|
type: 'drag-canvas',
|
||
|
enableOptimize: true,
|
||
|
},
|
||
|
'drag-node',
|
||
|
'brush-select',
|
||
|
],
|
||
|
},
|
||
|
});
|
||
|
|
||
|
fetch('https://gw.alipayobjects.com/os/bmw-prod/f1565312-d537-4231-adf5-81cb1cd3a0e8.json')
|
||
|
.then((res) => res.json())
|
||
|
.then((data) => {
|
||
|
graph.data(data);
|
||
|
graph.render();
|
||
|
|
||
|
const graphData = graph.save();
|
||
|
const nodeLen = graphData.nodes.length;
|
||
|
const edgeLen = graphData.edges.length;
|
||
|
descriptionDiv.innerHTML = `节点数量:${nodeLen}, 边数量:${edgeLen}, 图元数量:${
|
||
|
nodeLen + edgeLen
|
||
|
}`;
|
||
|
});
|
||
|
|
||
|
if (typeof window !== 'undefined')
|
||
|
window.onresize = () => {
|
||
|
if (!graph || graph.get('destroyed')) return;
|
||
|
if (!container || !container.scrollWidth || !container.scrollHeight) return;
|
||
|
graph.changeSize(container.scrollWidth, container.scrollHeight);
|
||
|
};
|