We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Having an issue not seeing self-edges, also this example below without the edge does not seem to render right now.
May need to add the node sizing constraint to the root node.
from ipyelk.elements import Edge, Label, Node, Port from ipyelk import from_element node = Node(labels=[Label(text="Node")]) port1 = Port( labels=[Label(text="1")], width=10, height=10, ) port2 = Port( labels=[Label(text="2")], width=10, height=10, ) node.add_port(port1) node.add_port(port2) node.add_edge(source=port1, target=port2) diagram = from_element(node) diagram
The text was updated successfully, but these errors were encountered:
Sorry, something went wrong.
Merge pull request #104 from jupyrdf/gh-101-self-edge
de51a27
fixing self edge bug
No branches or pull requests
Having an issue not seeing self-edges, also this example below without the edge does not seem to render right now.
May need to add the node sizing constraint to the root node.
The text was updated successfully, but these errors were encountered: