在图片中,所有节点都不在一行中。
我希望所有节点都在网图中的一条线上,而不是如图所示的倾斜。 缩放图的哪个属性用于禁用倾斜? 感谢您的帮助。
将所有节点排成一条线
我发现使用direction
将所有节点排成一行。只要使方向与from ... to...
保持一致
"links":[
{"from":"a", "to":"b","style":{"toDecoration":"arrow","direction":"R"}},
{"from":"b", "to":"c", "style":{"toDecoration":"arrow", "direction":"R"}},
{"from":"a", "to":"a_child1","style":{"toDecoration":"arrow","direction":"L"}},
{"from":"c", "to":"c_child1","style":{"toDecoration":"arrow","direction":"R"}}
]
a_child1 <- a ->b -> c -> c_child1