react-vis-network
react-vis-network copied to clipboard
[Deprecated] Declarative vis.js network for react
Bumps [puppeteer](https://github.com/puppeteer/puppeteer) from 1.6.0 to 1.20.0. Release notes Sourced from puppeteer's releases. v1.20.0 Big changes Chromium 78.0.3882.0 (r686378) New APIs: element.evaluate, element.evaluateHandle, element.select, jsHandle.evaluate, jsHandle.evaluateHandle API changes Added element.evaluate (#4892)...
I am currently mapping nodes and edges within a network component based on my component State. When my component loads, the canvas seems to be properly rendering the network, however...
add an object with events to handle clicks, hovers, hovers on edges, ... ```javascript const events = { select: ({nodes, edges}) => { console.log('nodes :', nodes); console.log('edges :', edges); },...
I'm using another drag n drop lib: `react-drag-listview` in my app. onDragStart seems to interfere with the canvas even though they're are completely seperated components on the dom. It seems...
Hello, To select a Node, I need to use React.createRef to access vis network instance and then this.networkRef.current.network.selectNodes([]) It would be amazing if you implement a prop such as: ```...
Please add an example.
Thanks for this library, it looks very interesting. I was trying to change the color properties of an Edge but since it's a multi level parameters section I was not...