# Keeping arrow tails apart

**URL:** https://forum.graphviz.org/t/keeping-arrow-tails-apart/778
**Category:** Help
**Created:** [August 22, 2021, 3:50pm UTC](https://forum.graphviz.org/t/keeping-arrow-tails-apart/778 "2021-08-22T15:50:48Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![kirkh](https://avatars.discourse-cdn.com/v4/letter/k/71c47a/32.png) [@kirkh](https://forum.graphviz.org/u/kirkh)
#### Post date: [August 22, 2021, 3:50pm UTC](https://forum.graphviz.org/t/keeping-arrow-tails-apart/778/1 "2021-08-22T15:50:48Z")

</div>

I have essentially this dot code:

A → B  
A → C [dir = both] [arrowtail = odot]

(At least I think that’s what I have. I needed to trim about 98% of the code to focus on this and may well have over-trimmed.)

At any rate, one of the arrows has a circle at its tail, while the other doesn’t. In the context of the much larger diagram, WebGraphViz insists on putting the tails of both the connector arrows at the exact same point on the A box. That makes it impossible for the reader to tell which arrow has the odot at the tail, which defeats the purpose of using it.

Can anyone tell me how to induce dot to keep the tails apart?

---

<div class="post-metadata">

### Author: ![steveroush](https://avatars.discourse-cdn.com/v4/letter/s/a9adbd/32.png) [@steveroush](https://forum.graphviz.org/u/steveroush)
#### Post date: [August 22, 2021, 5:04pm UTC](https://forum.graphviz.org/t/keeping-arrow-tails-apart/778/2 "2021-08-22T17:04:30Z")

</div>

Use **ports** ([portPos | Graphviz](https://graphviz.org/docs/attr-types/portPos/)) to explicitly position the edge connection location. Also see section 3.1 (Node Ports) of this document: [https://www.graphviz.org/pdf/dotguide.pdf](https://www.graphviz.org/pdf/dotguide.pdf)

---

<div class="post-metadata">

### Author: ![kirkh](https://avatars.discourse-cdn.com/v4/letter/k/71c47a/32.png) [@kirkh](https://forum.graphviz.org/u/kirkh)
#### Post date: [August 22, 2021, 6:18pm UTC](https://forum.graphviz.org/t/keeping-arrow-tails-apart/778/3 "2021-08-22T18:18:51Z")

</div>

Thanks! That fixed it nicely.
