-
When I create a simple graph with graph LR
A --> B
However, I have a case where I want to show A and B without a connector between them. Removing the connector and putting them on separate lines puts them vertically - ignoring the graph LR
A
B
Is there a way to force them to be on the same line (horizontally) without a connector? |
Beta Was this translation helpful? Give feedback.
Answered by
noamtamim
Jun 6, 2023
Replies: 1 comment
-
I found the (non-intuitive, IMHO) solution to this issue - an invisible link: graph LR
A ~~~ B
Closing the issue. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
noamtamim
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I found the (non-intuitive, IMHO) solution to this issue - an invisible link:
Closing the issue.