VivaGraphJS icon indicating copy to clipboard operation
VivaGraphJS copied to clipboard

Graph drawing library for JavaScript

Results 116 VivaGraphJS issues
Sort by recently updated
recently updated
newest added

Fix SVG dual links demo according to the amendments that have been made on the multigraph option of the ngraph.graph module. Also, I exposed isPaused variable for later usage without...

Hi! I was reading - https://github.com/anvaka/VivaGraphJS/issues/57 @simov I put in copy, not sure if my issue is duplicate of yours, maybe you can help me. **Could you help in finding...

Hi, I've noticed that once the canvas gets wider than 1400 or higher than 1000 pixels, the graph image is cropped and doesn't grow with the canvas. Can these limits...

Hi @anvaka , I would like to better understand how did you design the library, relating the part of rendering when you place nodes and links. For advanced rendering layout...

Hey Andrei, Been reading through the code but can't figure out a way to retrieve the current transform from graphics. The use case is to preserve the graph center and...

Feature suggestion: zooming the graph scales smoothly instead of at fixed scales Maybe can use CSS transitions.

Hi, thank you for this awesome lib. I'm creating a composite node (rect + text) with a constant layout. However the `g` has no `x` and `y` and we must...

I'd like to create a new graph centered at one specific node. How can I tell vivagraphjs to create the new graph keeping it centered to one specific node? If...

I'm looking at [this example](https://github.com/anvaka/VivaGraphJS/tree/master/demos/other/svg-circle-images), how can I add a border and a label to the circle? [Like this example here](https://csessig.files.wordpress.com/2015/04/network_graph_mary_ss.jpg). Thank you.

Hi! this is my code: ` graph = Viva.Graph.graph(); var layout = Viva.Graph.Layout.forceDirected(graph, { springLength: 100, springCoeff: 0.0008, dragCoeff: 0.02, gravity: -1.2 }); for (var i = 0; i <...