GoDigram for .NET Framework and .NET Core
Northwoods.Go.Layout Namespace / GoLayoutLayeredDigraphPack Enumeration
In This Topic
    GoLayoutLayeredDigraphPack Enumeration
    In This Topic
    These enumerated values can be bitwise combined as values for the GoLayoutLayeredDigraph.PackOption property, which controls how much and what kinds of effort GoLayoutLayeredDigraph.StraightenAndPack makes.
    Syntax
    [Flags()]
    public enum GoLayoutLayeredDigraphPack : System.Enum 
    Members
    MemberDescription
    AllEnable all options for the GoLayoutLayeredDigraph.StraightenAndPack method.
    ExpandThis option gives more chances for GoLayoutLayeredDigraph.StraightenAndPack to improve the layout of the network, but is very expensive in time for large networks.
    MedianThis option tries to have GoLayoutLayeredDigraph.StraightenAndPack center groups of nodes based on their relationships with nodes in other layers.
    NoneDo minimal work in GoLayoutLayeredDigraph.StraightenAndPack.
    StraightenThis option tries to have GoLayoutLayeredDigraph.StraightenAndPack straighten many of the links that cross layers.
    See Also