Options
All
  • Public
  • Public/Protected
  • All
Menu

Class CircularLayout

Hierarchy

This layout positions nodes in a circular arrangement. There are several samples that use CircularLayout. The layout cannot guarantee that it provides optimal positioning of nodes when trying to minimize link crossings.

If you want to experiment interactively with most of the properties, try the Circular Layout sample. See samples that make use of CircularLayout in the samples index.

This layout makes use of a LayoutNetwork of CircularVertexes and CircularEdges that normally correspond to the Nodes and Links of the Diagram.

Index

Inherited Members

Constructors

Properties

  • This read-only property is the coordinates of the center of the laid-out ellipse immediately after the layout.

  • This read-only property is the effective spacing that may have been calculated by the layout.

  • This read-only property is the effective X radius that may have been calculated by the layout.

  • This read-only property is the effective Y radius that may have been calculated by the layout.

  • Gets or sets the ratio of the arrangement's height to its width (1 for a circle, >1 for a vertically elongated ellipse).

    This is 1 by default. The value must be a positive number.

    Modifying this value changes the height, but keeps the width and the radius constant.

  • Gets or sets whether the nodes are arranged clockwise or counterclockwise.

    The default value is CircularLayout.Clockwise.

  • Specifies how the diameter of nodes will be calculated. When a node is not circular, it is not clear what its diameter is.

  • Gets or sets the horizontal radius of the elliptical arrangement.

    The default value is NaN. NaN indicates that the spacing will determine the size of the ring. If spacing is also NaN, the effective spacing will be 6. If spacing is a number, the effective radius will be > radius if and only if the spacing between elements would otherwise be less than spacing. The specified value for radius will be ignored if arrangement === CircularLayout.Packed. This property must always be positive or NaN.

  • Gets or sets the distance between nodes (if radius is NaN) or the minimum distance between nodes (if radius is a number).

    The default value is 6. The value may be NaN.

    If spacing is NaN, there is no minimum spacing, allowing nodes to overlap, unless radius is NaN, in which case the effective spacing will be 6 to determine an effective radius. If spacing is a number but radius isn't, the effective spacing will be spacing, and this will determine the effective radius. If both spacing and radius are numbers, the effective radius will be at least radius, but may be larger so that the minimum spacing between nodes is spacing.

  • Gets or sets the angle (in degrees, clockwise from the positive side of the X axis) of the first element.

    The default value is 0.

  • Gets or sets the absolute angle (in degrees) between the first and last node.

    The default value is 360. The value must be greater than zero and less than or equal to 360. If it is not in this range, it will be automatically set to 360.

    Whether the arrangement is clockwise or counterclockwise does not depend on the sign of this value. The direction can be controlled by setting direction. If 360 is the specified value, the actual value will be less to keep the first and last elements from overlapping, and the spacing between the first and last nodes will be determined the same way as for all other adjacent nodes.

Methods

  • commitLayout(): void
  • Position each Node according to the Vertex position, and then position the Links.

    You should not call this method -- it is a "protected virtual" method.

    Returns void

  • commitLinks(): void
  • Commit the position and routing of all edge links. This is called by commitLayout. This is only called if Layout.isRouting is true. Please read the Introduction page on Extensions for how to override methods and how to call this base method.

    Returns void

  • commitNodes(): void
  • Commit the position of all vertex nodes. Please read the Introduction page on Extensions for how to override methods and how to call this base method.

    Returns void

Constants

Nodes are sorted using the comparer, in ascending order; This value is used for CircularLayout.sorting.

The ring is filled by alternating sides; the second node is counterclockwise from the first node; This value is used for CircularLayout.direction.

The ring is filled by alternating sides; the second node is clockwise from the first node; This value is used for CircularLayout.direction.

The effective diameter is either the width or height of the node, whichever is larger; This will cause circular nodes to touch when CircularLayout.spacing is 0; This is ideal when the nodes are circular. This value is used for CircularLayout.nodeDiameterFormula.

Rings are filled clockwise; This value is used for CircularLayout.direction.

The angular distance between the nodes is constant; This value is used for CircularLayout.arrangement.

The distance between the centers of the nodes is constant; This value is used for CircularLayout.arrangement.

The spacing between the idealized boundaries of the nodes is constant; This value is used for CircularLayout.arrangement.

Rings are filled counterclockwise; This value is used for CircularLayout.direction.

Nodes are sorted using the comparer, in reverse ascending (descending) order; This value is used for CircularLayout.sorting.

Nodes are arranged in the order given; This value is used for CircularLayout.sorting.

Nodes are ordered to reduce link crossings; This value is used for CircularLayout.sorting.

The vertices are arranged as close together as possible considering the CircularLayout.spacing, assuming the nodes are rectangular; This value is used for CircularLayout.arrangement.

The effective diameter is sqrt(width^2+height^2); The corners of square nodes will touch at 45 degrees when CircularLayout.spacing is 0; This value is used for CircularLayout.nodeDiameterFormula.

Nodes are arranged in the reverse of the order given; This value is used for CircularLayout.sorting.