Class TreeVertexUnindexed

GoJS® Diagramming Components
version 3.0.0
by Northwoods Software®

Hierarchy

This holds TreeLayout-specific information about Nodes.

This class inherits from LayoutVertex.

Index

Constructors

Accessors

  • Gets or sets the absolute angle at which this subtree should grow from this vertex.

    The default value is zero, meaning that general tree growth should proceed rightwards along the X axis.

    This inherited property is initialized in the TreeLayout.initializeTreeVertexValues pass. By default this is the same as the Angle of the parent TreeVertex. However, after the initial propagation of property values, perhaps in an override of TreeLayout.assignTreeVertexValues, you could just set this property to specify the angle at which this node grows its subtrees.

  • Gets or sets how broad a node and its descendants should be.

    By default this is zero. A value of zero imposes no limit; a positive value will specify a limit for the total width of this subtree.

    This inherited property is initialized in the TreeLayout.initializeTreeVertexValues pass.

  • Gets or sets the logical children for this node.

    The default value is an empty array.

    This structural property is computed in TreeLayout.doLayout when building the tree structures. You should probably not be setting this property.

  • This read-only property returns the number of immediate children this node has.

    The default value is zero.

  • Gets or sets the space to leave between the node and the comments.

    The default value is 20.

    Negative values may cause comments to overlap with the node. This inherited property is initialized in the TreeLayout.initializeTreeVertexValues pass.

  • Gets or sets the space to leave between consecutive comments.

    The default value is 10.

    Negative values may cause comments to overlap. This inherited property is initialized in the TreeLayout.initializeTreeVertexValues pass.

  • Gets or sets an array of Nodes that will be positioned near this node.

    The default value is null.

    These objects should not have their own TreeVertexes to be laid out. Typically these will be Nodes whose Category is "Comment". This array should be allocated and initialized in TreeLayout.addComments.

  • Gets or sets the number of descendants this node has.

    For a leaf node, this will be zero.

    This informational property is computed as part of the TreeLayout.initializeTreeVertexValues pass. You should probably not be setting this property.

  • Gets or sets whether this node has been initialized as part of TreeLayout.doLayout when building the tree structures.

    The default value is false.

  • Gets or sets the distance between this node and its children.

    The default value is 50.

    Negative values may cause children to overlap with the parent. This inherited property is initialized in the TreeLayout.initializeTreeVertexValues pass.

  • Gets or sets the fraction of this node's depth that may overlap with the children's layer.

    The default value is 0.0 -- there is overlap only if layerSpacing is negative. Values must range from 0.0 to 1.0, where 1.0 means the full depth of this node.

    When this value is greater than 0.0, there might not be overlap if layerSpacing is larger than the depth of this node times this fraction. Even when this value is 0.0, there may be overlap when layerSpacing is negative. This inherited property is initialized in the TreeLayout.initializeTreeVertexValues pass.

  • Gets or sets the number of single-parent ancestors this node has.

    This could also be interpreted as which layer this node is in. A root node will have a value of zero.

    This informational property is computed in TreeLayout.doLayout when building the tree structures. You should probably not be setting this property.

  • Gets or sets the maximum number of children of any descendant of this node.

    For a leaf node, this will be zero.

    This informational property is computed as part of the TreeLayout.initializeTreeVertexValues pass. You should probably not be setting this property.

  • Gets or sets the maximum depth of the subtrees below this node.

    For a leaf node, this will be zero.

    This informational property is computed as part of the TreeLayout.initializeTreeVertexValues pass. You should probably not be setting this value.

  • Gets or sets the distance between child nodes.

    The default value is 20.

    A negative value will cause sibling nodes to overlap. This inherited property is initialized in the TreeLayout.initializeTreeVertexValues pass.

  • Gets or sets the logical parent for this node.

    The default value is null.

    This structural property is computed in TreeLayout.doLayout when building the tree structures. You should probably not be setting this property.

  • Gets or sets the position of this node relative to its parent node.

    This informational property is computed during TreeLayout.doLayout. You should probably not be setting this property.

  • Gets or sets the distance the first child of each row should be indented.

    The default value is 10. The value should be non-negative.

    This inherited property is initialized in the TreeLayout.initializeTreeVertexValues pass. This property is only used when the breadthLimit is positive, and some initial space needs to be reserved in each row of nodes for the links that are routed around those rows.

  • Gets or sets the distance between rows within one layer, all sharing the same parent.

    The default value is 25.

    Negative values may cause nodes to overlap. This inherited property is initialized in the TreeLayout.initializeTreeVertexValues pass.

  • Gets or sets whether the TreeLayout should set the ToSpot for each child node port.

    The default value is true -- this may modify the spots of the ports of the children nodes, if the node has only a single port.

    This inherited property is initialized in the TreeLayout.initializeTreeVertexValues pass. The spot used depends on the value of childPortSpot.

  • Gets or sets whether the TreeLayout should set the FromSpot for this parent node port.

    The default value is true -- this may modify the spot of the port of this node, the parent, if the node has only a single port.

    This inherited property is initialized in the TreeLayout.initializeTreeVertexValues pass. The spot used depends on the value of portSpot.

  • Gets or sets the offset of this parent node relative to its whole subtree.

    This informational property is computed during TreeLayout.doLayout. Of course if there are no children, this is just (0, 0). You should probably not be setting this property.

  • Gets or sets the size of the subtree (including all descendants) parented by this node.

    This informational property is computed during TreeLayout.doLayout. Of course if there are no children, this is just the same as Size. You should probably not be setting this property.

Methods

  • Copy inherited properties from another TreeVertex to this one.

    Parameters

    Returns void