У меня есть следующая модель:
strict digraph graphName {
rankdir="LR";
splines="curved";
age -> intention [label="-"];
attitude -> intention [label="+"];
education -> intention [label="+"];
env_friendly -> intention [label="+"];
knowledge -> intention [label="+"];
male
negative -> intention [label="-"];
neutral
positive -> intention [label="+"];
unsafe -> intention [label="-"];
positive -> env_friendly [dir="both", label="+"];
{ rank = same; age; attitude; education; env_friendly; knowledge; male; negative; neutral; positive; unsafe; }
}
Это делает ОК, но метки ребер выключены, и двойная стрелка идет в узлы, а не в ребро узла. Что я должен сделать, чтобы вернуть метки узлам?