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
Copy file name to clipboardExpand all lines: Readme.md
+84-2Lines changed: 84 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,90 @@ This example connects the [Microsoft Automatic Graph Layout (MSAGL)](https://git
12
12
13
13
## Implementation Details
14
14
15
-
...
15
+
### Load Sample Graph
16
+
17
+
The application loads a diagram from an XML file before applying a layout. This example includes five datasets: **Sugiyama**, **Ranking**, **PhyloTree**, **MDS**, and **Disconnected Graphs**.
// … similar for Ranking, PhyloTree, DisconnectedGraphs
27
+
```
28
+
29
+
### Extract and Arrange Nodes
30
+
31
+
The `GraphOperations.GetDiagramGraph` extracts nodes and edges from the diagram. The selected MSAGL calculator computes positions, which are then applied to the diagram:
0 commit comments