Console error while dragging and zooming the graph
I am facing issue with dragging and zooming a basic graph.
my package.json contains
[email protected] [email protected] [email protected] [email protected]
The error is
`
| defaultFilter | @ | drag.js:10 | |
|---|---|---|---|
| mousedowned | @ | drag.js:51 | |
| (anonymous) | @ | on.js:3 |
Uncaught TypeError: Cannot read properties of null (reading 'ctrlKey')
at HTMLDivElement.defaultFilter (zoom.js:13:11)
at HTMLDivElement.mousedowned (zoom.js:251:1)
at HTMLDivElement.Please help me to resolve this..
I'm seeing the same error. Graph shows up but can not pan or zoom.
"d3": "^7.3.0", "d3-context-menu": "^2.1.0", "d3-drag": "^1.2.5", "d3-force": "^2.0.1", "d3-shape": "^1.3.7", "d3-zoom": "^1.8.3", "react-d3-graph": "^2.6.0",
The D3 version must be lower than 6 because event global was discontinued in higher versions of D3 it causes errors when zooming and dragging any node or link. Make sure you also change d3-zoom and D3-drag to lower versions. The following worked for me:
"d3": "^5.1.6", "d3-context-menu": "^2.1.0", "d3-drag": "^1.2.5", "d3-force": "^2.0.1", "d3-shape": "^1.3.7", "d3-zoom": "^1.8.3", "react-d3-graph": "^2.6.0",