1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
| const ref = useRef(null);
const global_graph = new G6.Graph({ container: findDOMNode(ref.current), animate: false, minZoom: 0.2, maxZoom: 2, modes: { default: [ 'drag-node', 'drag-canvas', ], }, fitView: false, layout: { type: 'default-layout', radiusX: 300, radiusY: 300, ordering: 'topology', angleRatio: 1, }, nodeStateStyles: { hover: { lineWidth: 3, fillOpacity: 1 }, inhover: { opacity: 0.2 } }, edgeStateStyles: { hover: { lineWidth: 3 } } });
|