2 つのボックスの間の線を指す長い矢印を取得しようとしています。下の Graphviz を参照してください。私は何を間違っていますか??
ふ
この Graphviz では:
<graphviz>
digraph W1
{
rankdir=LR
nodesep = 0.05
node [shape=box, width="0.8", height="0.5", fontsize="10"];
edge [weight=5]
3,
edge [weight=1]
4, 5, Nod1,
node [shape = none];
node [shape = box];
3 [label = "Compound 2"];
4 [label = "Compound 1"];
5 [label = "Compound 3"];
Nod1 [label="N1", shape=diamond,style=filled,label="",height=.01,width=.01] ;
{
3 -> Nod1
4->Nod1
Nod1->5
{
rank = same;
Nod1, 3,
}
}
</graphviz>