Options
Public/Protected
  • Public
  • Public/Protected
  • All
Menu

GoJS API 文档

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

Constructors

constructor

Properties

Read-only actualCenter : Point

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

Read-only actualSpacing : number

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

Read-only actualXRadius : number

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

Read-only actualYRadius : number

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

arrangement : EnumValue

aspectRatio : number

  • 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.

comparer : function(a: CircularVertex, b: CircularVertex): number

direction : EnumValue

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

    The default value is CircularLayout.Clockwise.

nodeDiameterFormula : EnumValue

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

    The default is CircularLayout.Pythagorean.

radius : number

  • 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.

sorting : EnumValue

spacing : number

  • 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.

startAngle : number

  • 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.

sweepAngle : number

  • 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

Protected Override commitLayout

  • 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

Protected Virtual commitLinks

  • 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

Protected Virtual commitNodes

  • 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

Override createNetwork

Override doLayout

Constants

Static Ascending : EnumValue

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

Static BidirectionalLeft : EnumValue

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

Static BidirectionalRight : EnumValue

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

Static Circular : EnumValue

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.

Static Clockwise : EnumValue

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

Static ConstantAngle : EnumValue

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

Static ConstantDistance : EnumValue

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

Static ConstantSpacing : EnumValue

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

Static Counterclockwise : EnumValue

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

Static Descending : EnumValue

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

Static Forwards : EnumValue

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

Static Optimized : EnumValue

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

Static Packed : EnumValue

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.

Static Pythagorean : EnumValue

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.

Static Reverse : EnumValue

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

加入 GoJS 交流群
GoJS 交流群 (769862113)