gravis icon indicating copy to clipboard operation
gravis copied to clipboard

Interactive graph visualizations with Python and HTML/CSS/JS.

Results 13 gravis issues
Sort by recently updated
recently updated
newest added

I work with networkx and I use the layout produced by it. The problem is that when the graph is produced in my notebook, the image is not centered and...

Is it possible to change the arrow style in directed graphs (something like adding an attribute for "arrowstyle", as is implemented in matplotlib https://matplotlib.org/stable/api/_as_gen/matplotlib.patches.ArrowStyle.html)? Thanks, Neta

D3 has a set of symbols beyond the basic (circle, rectangle, hexagon). Is it possible to add a option to use these extra symbols? Thanks, Ely

I am trying to create a network graph with different edge length. However, the edge length is not changing. My code: ``` G = nx.Graph() for i in range(df.shape[0]): G.add_node(df.iloc[i,0],...

Is it possible to include a option to get arrow_color == edge_color? Thanks, Ely

[**panel**](https://panel.holoviz.org/) has a pane that displays HTML, that unfortunately does not work with gravis. Might this be an easy fix?

Hi, when I use gravis to export html file. It seem failed. Could you help me. Thanks ![image](https://github.com/robert-haas/gravis/assets/40423187/26acd950-fe03-49c4-a131-8c1ae9f2c59f)

My graph roughly corresponds to a file system, i.e., the nodes of the graph are directories and files, and the edges correspond to the relation `contains`, e.g., `dir1 -contains-> dir2`,...

Here is a minimal example: The following is working: ```python import igraph as ig import gravis as gv lnames = ['0', '1'] edgelist = [('0', '1')] graph = ig.Graph(len(lnames), vertex_attrs={'name':...

Needs legends for links/node based on size/width or color/shape.