mirror of
https://gitee.com/antv/g6.git
synced 2024-12-15 18:11:08 +08:00
91 lines
2.6 KiB
JavaScript
91 lines
2.6 KiB
JavaScript
import G6 from '@antv/g6';
|
|
|
|
const graphDiv = document.getElementById('container');
|
|
const descriptionDiv = document.createElement('div');
|
|
descriptionDiv.innerHTML =
|
|
'Constrians the nodes to be layed in the gray area with force-directed layout';
|
|
graphDiv.appendChild(descriptionDiv);
|
|
|
|
const container = document.getElementById('container');
|
|
const width = container.scrollWidth;
|
|
const height = container.scrollHeight || 500;
|
|
|
|
fetch('https://gw.alipayobjects.com/os/antvdemo/assets/data/relations.json')
|
|
.then((res) => res.json())
|
|
.then((data) => {
|
|
const nodes = data.nodes;
|
|
|
|
// 灰色区域
|
|
const constrainBox = { x: 60, y: 50, width: 500, height: 150 };
|
|
|
|
const backrect = document.createElement('div');
|
|
backrect.style.backgroundColor = '#666';
|
|
backrect.style.opacity = 0.1;
|
|
backrect.style.marginLeft = `${constrainBox.x}px`;
|
|
backrect.style.marginTop = `${constrainBox.y}px`;
|
|
backrect.style.width = `${constrainBox.width}px`;
|
|
backrect.style.height = `${constrainBox.height}px`;
|
|
backrect.style.position = 'absolute';
|
|
graphDiv.appendChild(backrect);
|
|
|
|
const onTick = () => {
|
|
let minx = 99999999;
|
|
let maxx = -99999999;
|
|
let miny = 99999999;
|
|
let maxy = -99999999;
|
|
let maxsize = -9999999;
|
|
nodes.forEach((node) => {
|
|
if (minx > node.x) {
|
|
minx = node.x;
|
|
}
|
|
if (maxx < node.x) {
|
|
maxx = node.x;
|
|
}
|
|
if (miny > node.y) {
|
|
miny = node.y;
|
|
}
|
|
if (maxy < node.y) {
|
|
maxy = node.y;
|
|
}
|
|
if (maxsize < node.size) {
|
|
maxsize = node.size;
|
|
}
|
|
});
|
|
const scalex = (constrainBox.width - maxsize) / (maxx - minx);
|
|
const scaley = (constrainBox.height - maxsize) / (maxy - miny);
|
|
nodes.forEach((node) => {
|
|
node.x = (node.x - minx) * scalex + constrainBox.x;
|
|
node.y = (node.y - miny) * scaley + constrainBox.y;
|
|
});
|
|
};
|
|
|
|
const graph = new G6.Graph({
|
|
container: 'container',
|
|
width,
|
|
height,
|
|
layout: {
|
|
type: 'force',
|
|
onTick,
|
|
},
|
|
defaultNode: {
|
|
size: 15,
|
|
},
|
|
});
|
|
|
|
graph.data({
|
|
nodes: data.nodes,
|
|
edges: data.edges.map(function (edge, i) {
|
|
edge.id = 'edge' + i;
|
|
return Object.assign({}, edge);
|
|
}),
|
|
});
|
|
graph.render();
|
|
|
|
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);
|
|
};
|
|
});
|