See: Description
Class | Description |
---|---|
CircularLayout |
This layout algorithm arranges graphs in a circular fashion.
|
CircularLayoutData |
Specifies custom data for the
CircularLayout . |
SingleCycleLayout |
This layout algorithm places all nodes of a graph on a single cycle.
|
Enum | Description |
---|---|
LayoutStyle | |
PartitionStyle |
Provides circular layout style algorithms.
The circular layout style is characterized by the placement of nodes on a circle.
Two implementations, providing support for single-cycle and multi-cycle layouts, are offered:
CircularLayout
provides support for single-cycle and multi-cycle layouts of graphs. It decomposes the graph into partitions and arranges the nodes of a partition in a circular style. This way, it is well suited to emphasize different subgraphs and the connections between them. CircularLayout
can also place some nodes inside a circle, resulting in the so-called disk-style.SingleCycleLayout
is a simple and fast implementation that produces single-cycle layouts of arbitrary graphs.