-
Notifications
You must be signed in to change notification settings - Fork 591
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
Support markers at start and midpoint of edges #316
Conversation
Adds "arrowtail" and "arrowmid" attributes to edges.
Can you resolve conflicts and maybe also a short sample how this is being used? |
Thanks for taking a look. I fixed the merge conflict. I did make some changes to Basically it adds the attributes I did have to do a little update to the standard "normal" and "vee" arrows to detect when they're being used as So long story short you'd make a double-headed arrow edge like this: g.setEdge("leftNode", "rightNode", {
arrowhead: "normal",
arrowtail: "normal"
}); |
I need this feature,thx! |
Hi all, |
I'd love to use this too! |
Also keen to have this merge |
Did the merge happen? |
Updated to #361. |
Adds "arrowtail" and "arrowmid" attributes to edges.
Default to "undirected" so default behavior is the same.
Fixes #194