Arrow on edges in forceDirectedGraph #160
Replies: 1 comment
-
|
Found the answer - the code was creating the links in both directions so A -> B and B -> A! I removed the offending line and all is well |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
With a forceDirectedGraph is there a way to marker arrows just pointing in one direction? I.e. like ---> . If I set edgeLineDirected: true then I get an arrow at both ends of the edge: <----->. Obviously with the property set to false then no arrows appear.
My nodes represent individuals and the edges represent help given so if A helped B but not reciprocally then the edge would look like: A ----> B. If A had helped B, AND B had helped A then A <---> B
Beta Was this translation helpful? Give feedback.
All reactions