Number: 121
Title: edge label drawn on top of node
Submitter: Frank Korzeniewski
Date: Thu Mar 28 12:26:34 2002
Subsys: Dot
Version: dot version 1.7.7 (Tue Mar 26 21:57:21 PST 2002)
System: x86-Other-4.5
Severity: minor
Problem:
On FreeBSD 4.5 the line in the graph: autoconf -> configure [label=generates]; writes the arc label on top of the "Makefile.in" node which is about 1.5 inches to the right of the arc. This happens both in the dotty display and on paper. When it is changed to "taillabel" then no label is displayed. Also specifying "decorate=true" does not draw a connecting line.
Input:
digraph G {
        builder [shape=circle];
        aclocal [shape=box];
        autoconf [shape=box];
        automake [shape=box];
        make [shape=box];
        configure [shape=box];
        aclocal -> "aclocal.m4" [label=generates];
        builder -> "configure.in" [label=creates];
        builder -> "Makefile.am" [label=creates];
        builder -> ChangeLog [label=creates];
        "configure.in" -> autoconf [label=input];
        autoconf -> configure [label=generates];
        "configure.in" -> automake [label=input];
        "aclocal.m4" -> automake [label=input];
        "Makefile.am" -> automake [label=input];
        automake -> "Makefile.in" [label=generates];
        automake -> "aux.files" [label=generates];
        "Makefile.in" -> configure [label=input];
        configure -> Makefile [label=generates];
        Makefile -> make [label=input];
        make -> program [label=generates];
        ChangeLog -> automake [label=input];
}
Owner: *
Status: Fixed