Re: [graphviz-interest] How do I make 3 edges meet seamlessly at a point?

Ron Savage <[email protected]> Wed, 03 Sep 2014 08:59:24 +1000
Newsgroups gmane.comp.video.graphviz
Message-ID <[email protected]>
Hi

Still with 'dot - graphviz version 2.38.0 (20140413.2041)':

I'm persisting with this because I cannot achieve the coincident edges 
as per John's last letter.

I opened a note in the bug tracker, but could not see a way to attach 
files, so I clicked the browser's back button, and the files are 
attached here.

On 02/09/14 23:59, John Ellson wrote:
> On 09/01/2014 03:19 PM, Emden R. Gansner wrote:
>> ... if you want a seamless join, you should use [shape=point width=0]
>
> That works for black edges.   In this case you should also add
> color=grey  or there will be a little black dot at the junction.


-- 
Ron Savage - savage.net.au

_______________________________________________
[email protected]
http://lists.research.att.com/mailman/listinfo/graphviz-interest
x.gv (text/plain, 352 B)
digraph Perl
{
graph [ rankdir="TB" ]
node [ shape="oval" style="filled" ]
edge [ color="grey" ]
"Carnegie" [ color="aquamarine" ]
"Murrumbeena" [ color="bisque" ]
"Oakleigh" [ color="blueviolet" ]
"one" [ color="grey" shape="point" width="0" ]
"Murrumbeena" -> "one" [ arrowhead="none" ]
"Carnegie" -> "one" [ arrowhead="none" ]
"one" -> "Oakleigh"
}
x.svg (image/svg+xml, 2.2 KB) - not displayed