New to Telerik UI for BlazorStart a free 30-day trial

Controls which aspects of a diagram connection users can edit interactively. Use this to enable or disable editing of connection endpoints, routing points, labels, and other properties. Allows granular control over user interaction capabilities for individual connections.

Definition

Namespace:Telerik.Blazor.Components

Assembly:Telerik.Blazor.dll

Syntax:

C#
public class DiagramConnectionEditableDescriptor : DataVizChildComponentDescriptor

Inheritance: objectDataVizChildComponentDescriptorDiagramConnectionEditableDescriptor

Constructors

C#
public DiagramConnectionEditableDescriptor()

Methods

C#
public Dictionary<string, object> Serialize()
Returns:

Dictionary<string, object>

Properties

Specifies if the connection can be dragged.

C#
public bool? Drag { get; set; }

Enables or disables all editing interactions for the connection. When set to false, the connection becomes read-only and users cannot modify, select, or remove it. Use this to create fixed connections that represent permanent relationships in the diagram.

C#
public bool? Enabled { get; set; }

Configures the connection points editing behavior. When set, users can drag connection endpoints and intermediate points to reposition connections.

C#
public DiagramConnectionEditablePointsDescriptor Points { get; set; }

Specifies if the connection can be removed.

C#
public bool? Remove { get; set; }