Constraints in EJ2 JavaScript Diagram control

18 Apr 20238 minutes to read

Constraints are used to enable/disable certain behaviors of the diagram, nodes and connectors. Constraints are provided as flagged enumerations, so that multiple behaviors can be enabled/disabled using Bitwise operators (&, , ~, «, etc.).

To know more about Bitwise operators, refer to Bitwise Operations.

Diagram constraints

Diagram constraints allow to enable or disable the following behaviors:

  • Page editing
  • Bridging
  • Zoom and pan
  • Undo/redo
  • Tooltip

The following example illustrates how to disable page editing using the diagram constraints.

var diagram = new ej.diagrams.Diagram({
    width: '100%', height: 600,
    constraints: DiagramConstraints.Default & ~DiagramConstraints.PageEditable
});

For more information about diagram constraints, refer to DiagramConstraints.

Node constraints

Node constraints allows to enable or disable the following behaviors of node. They are as follows:

  • Selection
  • Deletion
  • Drag
  • Resize
  • Rotate
  • Connect
  • Shadow
  • Tooltip

The following example illustrates how to disable rotation using the node constraints.

var nodes = [{ id: 'node', offsetX: 100, offsetY: 100, constraints: NodeConstraints.Default & ~NodeConstraints.Rotate }];
var diagram = new ej.diagrams.Diagram({
    width: '100%, height: 600, nodes: nodes,
},'#element');

For more information about node constraints, refer to NodeConstraints.

Connector constraints

Connector constraints allow to enable or disable certain behaviors of connectors.

  • Selection
  • Deletion
  • Drag
  • Segment editing
  • Tooltip
  • Bridging

The following code illustrates how to disable selection by using connector constraints.

var connectors = [{
    id: 'connector1',
    type: 'Straight',
    sourcePoint: { x: 100, y: 100 },
    targetPoint: { x: 200, y: 200 },
    constraints: ConnectorConstraints.Default & ~ConnectorConstraints.Select
}];
var diagram = new ej.diagrams.Diagram({
    width: '100%', height: 600, connectors: connectors,
},'#element');

For more information about connector constraints, refer to ConnectorConstraints.

Port constraints

You can enable or disable certain behaviors of port. They are as follows:

  • Connect
  • ConnectOnDrag

The following code illustrates how to disable creating connections with a port.

var nodes = [
    {
        id: 'node',
        offsetX: 100,
        offsetY: 100,
        ports: [
            {
                constraints: PortConstraints.None
            }
        ]
    }
];
var diagram = new ej.diagrams.Diagram({
    width: '100%', height: 600, nodes: nodes,
});

For more information about port constraints, refer to PortConstraints.

Annotation constraints

You can enable or disable read-only mode for the annotations by using the annotation constraints.

The following code illustrates how to enable read-only mode for the annotations.

var nodes = [
    {
        id: 'node',
        offsetX: 100,
        offsetY: 100,
        annotations: [
            {
                id: 'anotation_1',
                content: 'annotation',
                constraints: AnnotationConstraints.ReadOnly,
            }
        ]
    }
];
var diagram = new ej.diagrams.Diagram({
    width: '100%', height: 600, nodes: nodes,
});

For more details about annotation constraints, refer to AnnotationConstraints.

Selector constraints

Selector visually represents the selected elements with certain editable thumbs. The visibility of the thumbs can be controlled with selector constraints. The part of selector is categorized as follows:

  • Resizer
  • Rotator
  • User handles

The following code illustrates how to hide rotator.

var diagram = new ej.diagrams.Diagram({
    width: '100%', height: 600,
    selectedItems: { constraints: SelectorConstraints.All & ~SelectorConstraints.Rotate}
});

For more information about selector constraints, refer to SelectorConstraints.

Snap constraints

Snap constraints control the visibility of gridlines and enable/disable snapping. Snap constraints allow to set the following behaviors.

  • Show only horizontal or vertical gridlines.
  • Show both horizontal and vertical gridlines.
  • Snap to either horizontal or vertical gridlines.
  • Snap to both horizontal and vertical gridlines.

The following code illustrates how to show only horizontal gridlines.

var diagram = new ej.diagrams.Diagram({
    width: '100%', height: 600,
    snapSettings: {
        constraints: SnapConstraints.ShowHorizontalLines
    }
});

For more information about snap constraints, refer to SnapConstraints.

Boundary constraints

Boundary constraints defines a boundary for the diagram inside which the interaction should be done. Boundary constraints allow to set the following behaviors.

  • Infinite boundary
  • Diagram sized boundary
  • Page sized boundary

The following code illustrates how to limit the interaction done inside a diagram within a page.

var diagram = new ej.diagrams.Diagram({
    width: '100%', height: 600,
    pageSettings: {
        boundaryConstraints: 'Page'
    }
});

For more information about selector constraints, refer to BoundaryConstraints.

Inherit behaviors

Some of the behaviors can be defined through both the specific object (node/connector) and diagram. When the behaviors are contradictorily defined through both, the actual behavior is set through inherit options.

The following code example illustrates how to inherit the line bridging behavior from the diagram model.

ej.diagrams.Inject(ej.diagrams.ConnectorBridging);
var connectors = [{
    id: 'connector1',
    type: 'Straight',
    sourcePoint: { x: 100, y: 100 },
    targetPoint: { x: 200, y: 200 },
    constraints: ConnectorConstraints.Default & ConnectorConstraints.InheritBridging
}];
var diagram = new ej.diagrams.Diagram({
    width: '100%', height: 600, connectors: connectors,
    constraints: DiagramConstraints.Default | DiagramConstraints.Bridging
});

Bitwise operations

Bitwise operations are used to manipulate the flagged enumerations [enum]. In this section, Bitwise operations are illustrated by using node constraints. The same is applicable while working with node constraints, connector constraints, or port constraints.

Add operation

You can add or enable multiple values at a time by using Bitwise ‘ ’ (OR) operator.
node.constraints = NodeConstraints.Select | NodeConstraints.Rotate;

In the previous example, you can do both the selection and rotation operation.

Remove Operation

You can remove or disable values by using Bitwise ‘&~’ (XOR) operator.

node.constraints = node.constraints & ~(NodeConstraints.Rotate);

In the previous example, rotation is disabled but other constraints are enabled.

Check operation

You can check any value by using Bitwise ‘&’ (AND) operator.

if ((node.constraints & (NodeConstraints.Rotate)) == (NodeConstraints.Rotate));

In the previous example, check whether the rotate constraints are enabled in a node. When node constraints have rotate constraints, the expression returns a rotate constraint.