You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fixed label annotations placement for nodes having matrix layout.
Fixed horizontal arrows for assistants and adviser item types.
Removed `loopsLayoutMode` property from `FamConfig`.
Refactored layout autofit functionality out of family layout
Removed recursive calls from nested layouts
Copy file name to clipboardExpand all lines: samples/LoopsInFamily.md
+1-2Lines changed: 1 addition & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,6 @@
1
1
# Optimization of loops in layered graph visualization
2
2
3
-
If relations between nodes form loops, the control tries to find a layout minimizing the number of links going in the opposite direction.
4
-
This optimization is optional and can be disabled. For example, if you have two nodes A and B, referencing each other, it is unclear which node will be above the other one in the diagram. To match node order in the diagram layers to their order in items collection, set option `loopsLayoutMode` to `primitives.LoopsLayoutMode.KeepItemsOrder`.
3
+
If relations between nodes form loops, the control tries to find a layout minimizing the number of links going in the opposite direction.
{id: 1,parents: [3,5,6,7],title: "James",label: "James",description: "James is First and he is child of Brad, Sara & Lynette",image: "../images/photos/j.png"},
Copy file name to clipboardExpand all lines: samples/javascript.controls/DemoMutualFinancialOwnership.html
-3Lines changed: 0 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -22,12 +22,10 @@
22
22
newjavascriptsamples.CaptionConfig("Page Fit Mode defines rule of fitting chart into available screen space. Set it to None if you want to disable it.",false),
23
23
newjavascriptsamples.RadioBoxConfig("pageFitMode",primitives.PageFitMode.FitToPage,"Page Fit Mode",{None: 0,PageWidth: 1,PageHeight: 2,FitToPage: 3,SelectionOnly: 6},javascriptsamples.ValueType.Integer,onUpdate),
24
24
newjavascriptsamples.CaptionConfig("Loops layout optimization finds parent/child items order having minimul number of loops between level. Control renders loops with extra arrows along vertical segments.",false),
newjavascriptsamples.RadioBoxConfig("hideGrandParentsConnectors",true,"The hideGrandParentsConnectors option hides direct connectors to grand parents. It helps to reduce diagrams connectors layout complexity. This option should be used together with dynamic highlighting of connectors to grandparents via immidiate parents, so information is not lost.",{Hide: true,Show: false},javascriptsamples.ValueType.Boolean,onUpdate),
0 commit comments