jgraph icon indicating copy to clipboard operation
jgraph copied to clipboard

An embeddable webGL graph visualization library.

Results 8 jgraph issues
Sort by recently updated
recently updated
newest added

I run the example notebook in `Jupiter notebook` and everything works. I tried to do the same in `jupyter lab` but the graphs are not rendered. Any suggestion please?

Everything worked on Juypter notebook. But when I tried to run jgraph on Google Colab to share the graph with others, it didn't render.

Running: `pip install git+https://github.com/patrickfuller/jgraph.git` to install from the repo fails in the `setup.py`: ``` Collecting git+https://github.com/patrickfuller/jgraph.git Cloning https://github.com/patrickfuller/jgraph.git to /private/var/folders/l8/qg6m44156_l6bzv_cbkk7bf00000gn/T/pip-req-build-eu4tacit Complete output from command python setup.py egg_info: Traceback (most recent...

I'm working on a project about social network, so I'm wondering is there any way to add text to the nodes and edges?

Is it possible to render multiple jgraph views on one page? For example: ```javascript jgraph.create('.graph-left'); $.getJSON('graphs/lesmis.json', function (graph) { jgraph.draw(graph); }); jgraph.create('.graph-right'); $.getJSON('graphs/lesmis.json', function (graph) { jgraph.draw(graph); }); ``` When...

Is there a way to run the force directed graph layout on a graph but restrict the layout to 2D, say in the x-y plane? i.e. just the standard layout...

It would be great if you can add incremental addNode function. Like https://cdn.rawgit.com/frewsxcv/graphosaurus/HEAD/examples/incremental/index.html

enhancement

Do you have plans to implement multiple edges between nodes? Right now new edge will overwrite previous. And this this looks like one edge. `mesh = new THREE.Mesh(self.cylinderGeometry, material); `...

enhancement