react-graph-vis icon indicating copy to clipboard operation
react-graph-vis copied to clipboard

A react component to render nice graphs using vis.js

Results 63 react-graph-vis issues
Sort by recently updated
recently updated
newest added

`const [graphData, setGraphData] = useState(g1)` `// addNode onClick function for button Change Graph.` ``` const addNode = (e) => { e.preventDefault() console.log('addNode clicked!') setGraphData(g2) } ``` ``` return ``` graphData...

I'm trying to use the "image" type for endArrow, as defined as valid in the vis docs. In my [sandbox](https://codesandbox.io/s/vis-ex-367tu?file=/src/App.js), I'm struggling with a lot of `endArrow` properties. The error...

https://visjs.github.io/vis-network/examples/network/events/renderEvents.html

When there are multiple nodes present, adding a new node freeze the UI for a moment. How could I go about reducing the freeze or is the package not suitable...

Hi, I am serving the data directly from an **API i**n the **specified format.** I am rendering the **graph** inside a Class component. the initial state is as follows **graph...

I'm trying to change the background color of clusters in react-graph-vis. I have written options like this. Other attributes are correctly working but no changes regarding clustering. Can you provide...

I'm trying to change the background color of clusters in react-graph-vis. I have written options like this. Other attributes are correctly working but no changes regarding clustering. `options = {...

Hi Thank you for useful library. I'm currently trying to render network diagram in my react Apps using your library. I'd like to use navigationButton in diagram, and I've already...

Thanks for a great component, however there's a clash when using this along with React Router, when you're using HashRouter, since this component renders a # in the end of...

Hi, I found myself in a hurry since I'm trying to implement an event that shows a context menu when a user right clicks in a node or in an...