Details
-
Type:
Bug
-
Status: Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 2017/02
-
Fix Version/s: 2017/02-01, 2017/11
-
Component/s: KLighD - Lightweight Diagrams
-
Labels:None
Description
With the following graph klighd's edge endpoint adjustment does not work. See attached screenshot.
Uncommenting the
if (adjustments) ...
|
hierarchyHandling: INCLUDE_CHILDREN
|
|
node parent {
|
nodePlacement.strategy: NETWORK_SIMPLEX
|
port p1
|
port p2
|
port p3
|
port p4
|
node n1_1 {
|
layout [
|
size: 10, 20
|
]
|
label ""
|
}
|
edge p1 -> n1_1 {
|
layout [
|
]
|
}
|
edge n1_1 -> p2 {
|
layout [
|
]
|
}
|
edge n1_1 -> p3 {
|
layout [
|
]
|
}
|
edge n1_1 -> p4 {
|
layout [
|
]
|
}
|
}
|
node other {
|
layout [
|
size: 20, 40
|
]
|
}
|
edge other -> parent.p1 {
|
layout [
|
]
|
}
|
edge other -> parent.n1_1
|