-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Customize style for relationship #7
Comments
Currently, edges can only be changed wrt.
where both mappings could be lambdas as well. Text styling supports the following properties: This works for both, nodes and edges, e.g.
Unfortunately, the two options you are looking for are currently not supported. However, we may add them in the future, therefore keeping this open as feature request. |
@fskpf Thanks for the intuitive response. How about setting default layout? The hierarchic works perfectly in my case but I can't find a way to set it by default. |
This is a missing feature for the That said, you can work around this and set the layout on the (private) core field like so: g.show_cypher("MATCH (s)-[r]->(t) RETURN s,r,t LIMIT 20")
g._widget.hierarchic_layout() The above-mentioned notebook contains the different available layout calls. The important part here is that you must set the layout directly after the |
The layout can now be specified through a |
Thank you for this amazing widget.
Is there a way to customize the style for edge (relationship)? For example changing from solid to dotted line or bold the display text.
The text was updated successfully, but these errors were encountered: