Options
All
  • Public
  • Public/Protected
  • All
Menu

Class Layer

Hierarchy

  • Layer

Layers are how named collections of Parts are drawn in front or behind other collections of Parts in a Diagram. Layers can only contain Parts, such as Nodes and Links. They cannot hold GraphObjects directly.

You put a Part into a Layer by assigning Part.layerName with the name of the Layer. You can use data binding to initialize and remember a Part's layer's name. You can change a Part's layer by modifying its Part.layerName, which changes its Part.layer.

Each Diagram starts off with the following list of Layers: "Grid", "Background", "" (the default layer), "Foreground", "Adornment", "Tool". Parts are normally put in the default layer. The "Grid", "Adornment", and "Tool" layers are considered isTemporary. Changes to objects in temporary layers are not recorded by the UndoManager. Parts in temporary layers are not selected and are not considered to be part of the document. Objects in temporary layers do not receive click events unless you set their GraphObject.isActionable to true. The "Grid" layer is the furthest back; it also contains "temporary" parts that cannot be selected. Furthermore the "Grid" layer has pickable set to false so that mouse or touch events and calls to the "find..." methods do not even consider any parts in that layer.

Layers have many properties that control what actions users are permitted to perform involving the parts in the layer. These properties are very much like the similarly named properties on Diagram.

Z-ordering

Layers are drawn and presented in order. You can add your own layers by calling Diagram.addLayerBefore or Diagram.addLayerAfter to insert a new layer at a particular place in the Z-order, or to re-order existing layers. Use Diagram.findLayer to get the Layer with a particular name. Parts can be individually z-ordered within a layer by setting Part.zOrder.

Index

Constructors

  • This constructs an empty Layer; you should set the name before adding the Layer to a Diagram.

    Parameters

    • Optional init: Partial<Layer>

      Optional properties to initialize.

    Returns Layer

Properties

  • Gets or sets whether the user may copy objects in this layer. The initial value is true.

  • Gets or sets whether the user may delete objects in this layer. The initial value is true.

  • Gets or sets whether the user may group parts together in this layer. The initial value is true.

  • Gets or sets whether the user may draw new links in this layer. The initial value is true.

  • Gets or sets whether the user may move objects in this layer. The initial value is true.

  • Gets or sets whether the user may reconnect existing links in this layer. The initial value is true.

  • Gets or sets whether the user may reshape parts in this layer. The initial value is true.

  • Gets or sets whether the user may resize parts in this layer. The initial value is true.

  • Gets or sets whether the user may rotate parts in this layer. The initial value is true.

  • Gets or sets whether the user may select objects in this layer. The initial value is true.

  • Gets or sets whether the user may do in-place text editing in this layer. The initial value is true.

  • Gets or sets whether the user may ungroup existing groups in this layer. The initial value is true.

  • This read-only property returns the Diagram that is using this Layer.

  • Gets or sets whether or not a layer is included in the documentBounds computation. Default value is true. However, setting isTemporary to true also sets this property to false before version 3.

    since

    2.2

    see

    isTemporary

  • Gets or sets whether the objects in this layer are considered temporary.

    Parts in temporary layers are not selectable, and changes to Parts in temporary layers are not recorded in the UndoManager. Objects in temporary layers do not receive click events unless you set their GraphObject.isActionable to true.

    Temporary layers are excluded from bounds calculations, with the exception of the "Tool" layer, so that temporary objects created while dragging are included in the bounds.

    Default value is false.

    When this is set to true, isInDocumentBounds on this layer is set to false. You can override this behavior by setting isInDocumentBounds after setting this property.

    see

    isInDocumentBounds

  • Gets or sets the name for this layer. The initial value is an empty string, which is also the name of the default layer. The name should be unique among the diagram's Diagram.layers.

  • Gets or sets the opacity for all parts in this layer. The value must be between 0.0 (fully transparent) and 1.0 (no additional transparency). This value is multiplicative with any existing transparency, for instance from a Brush or image transparency. The default value is 1.

    This property, unlike visible, does not change whether any objects are found by the "find..." methods.

    since

    1.1

    see

    GraphObject.opacity, Diagram.opacity

  • This read-only property returns a backwards iterator for this Layer's Parts, for iterating over the parts in reverse order. The Parts can be Nodes, Links, Groups, Adornments, or simple Parts.

  • Gets or sets whether methods such as findObjectAt find any of the objects in this layer.

    The default value is true. When this property is false, all of the "find..." methods will fail to find parts that are in this layer.

    Note that setting pickable to false does not prevent users from selecting nodes. It does prevent them from selecting nodes by clicking on them, but does not prevent selection through other mechanisms such as the DragSelectingTool or CommandHandler.selectAll or calls to Diagram.select.

    You can control whether individual GraphObjects are "hittable" by setting GraphObject.pickable.

    since

    1.2

    see

    GraphObject.pickable

  • Gets or sets whether the user may view any of the objects in this layer.

    The default value is true -- all visible Parts are drawn. When this property is false, all of the "find..." methods will fail to find parts that are in this layer.

    see

    GraphObject.visible

Methods

  • findObjectAt<T>(p: Point, navig?: (a: GraphObject) => T, pred?: (a: T) => boolean): T
  • Find the front-most GraphObject in this layer at the given point in document coordinates.

    If visible is false, this method will not find any objects in this layer. However, opacity does not affect this method.

    Type parameters

    Parameters

    • p: Point

      A Point in document coordinates.

    • Optional navig: (a: GraphObject) => T

      A function taking a GraphObject and returning a GraphObject, defaulting to the identity.

    • Optional pred: (a: T) => boolean

      A function taking the GraphObject returned by navig and returning true if that object should be returned, defaulting to a predicate that always returns true.

        • (a: T): boolean
        • Parameters

          • a: T

          Returns boolean

    Returns T

    The first GraphObject in the Z-order, or else null.

  • findObjectsAt<T, S>(p: Point, navig?: (a: GraphObject) => T, pred?: (a: T) => boolean, coll?: S): S
  • Return a collection of the GraphObjects of this layer at the given point in document coordinates.

    If visible is false, this method will not find any objects in this layer. However, opacity does not affect this method.

    Type parameters

    Parameters

    • p: Point

      A Point in document coordinates.

    • Optional navig: (a: GraphObject) => T

      A function taking a GraphObject and returning a GraphObject, defaulting to the identity. If this function returns null, the given GraphObject will not be included in the results.

    • Optional pred: (a: T) => boolean

      A function taking the GraphObject returned by navig and returning true if that object should be returned, defaulting to a predicate that always returns true.

        • (a: T): boolean
        • Parameters

          • a: T

          Returns boolean

    • Optional coll: S

      An optional collection (List or Set) to add the results to.

    Returns S

    a collection of GraphObjects that will contain all GraphObjects located at Point p, or else an empty collection. If a List or Set was passed in, it is returned.

  • findObjectsIn<T, S>(r: Rect, navig?: (a: GraphObject) => T, pred?: (a: T) => boolean, partialInclusion?: boolean, coll?: S): S
  • Returns a collection of all GraphObjects that are inside or that intersect a given Rect in document coordinates.

    If visible is false, this method will not find any objects in this layer. However, opacity does not affect this method.

    Type parameters

    Parameters

    • r: Rect

      A Rect in document coordinates.

    • Optional navig: (a: GraphObject) => T

      A function taking a GraphObject and returning a GraphObject, defaulting to the identity. If this function returns null, the given GraphObject will not be included in the results.

    • Optional pred: (a: T) => boolean

      A function taking the GraphObject returned by navig and returning true if that object should be returned, defaulting to a predicate that always returns true.

        • (a: T): boolean
        • Parameters

          • a: T

          Returns boolean

    • Optional partialInclusion: boolean

      Whether an object can match if it merely intersects the rectangular area (true) or if it must be entirely inside the rectangular area (false). The default value is false.

    • Optional coll: S

      An optional collection (List or Set) to add the results to.

    Returns S

    a collection of GraphObjects that will contain all GraphObjects located in or near Rect r, or else an empty collection. If a List or Set was passed in, it is returned.

  • findObjectsNear<T, S>(p: Point, dist: number, navig?: (a: GraphObject) => T, pred?: (a: T) => boolean, partialInclusion?: boolean | S, coll?: S): S
  • Returns a collection of all GraphObjects that are within a certain distance of a given point in document coordinates.

    If visible is false, this method will not find any objects in this layer. However, opacity does not affect this method.

    Type parameters

    Parameters

    • p: Point

      A Point in document coordinates.

    • dist: number

      The distance from the point.

    • Optional navig: (a: GraphObject) => T

      A function taking a GraphObject and returning a GraphObject, defaulting to the identity. If this function returns null, the given GraphObject will not be included in the results.

    • Optional pred: (a: T) => boolean

      A function taking the GraphObject returned by navig and returning true if that object should be returned, defaulting to a predicate that always returns true.

        • (a: T): boolean
        • Parameters

          • a: T

          Returns boolean

    • Optional partialInclusion: boolean | S

      Whether an object can match if it merely intersects the circular area (true) or if it must be entirely inside the circular area (false). The default value is true.

    • Optional coll: S

      An optional collection (List or Set) to add the results to.

    Returns S

    a collection of GraphObjects that will contain all GraphObjects located at Point p, or else an empty collection. If a List or Set was passed in, it is returned.