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

Defines the source shape and connection point where a diagram connection originates. Use this to specify which shape the connection starts from and optionally which connector point on that shape. Works with DiagramConnectionToDescriptor to establish the complete connection path between shapes.

Definition

Namespace:Telerik.Blazor.Components

Assembly:Telerik.Blazor.dll

Syntax:

C#
public class DiagramConnectionFromDescriptor : DataVizChildComponentDescriptor

Inheritance: objectDataVizChildComponentDescriptorDiagramConnectionFromDescriptor

Constructors

C#
public DiagramConnectionFromDescriptor()

Methods

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

Dictionary<string, object>

Properties

Sets the horizontal coordinate where the connection starts on the source shape. Measured in pixels from the diagram origin. For example, 100 positions the connection start at 100 pixels from the left edge. Use with Y to define the exact starting point when not using named connectors.

C#
public double? X { get; set; }

Sets the vertical coordinate where the connection starts on the source shape. Measured in pixels from the diagram origin. For example, 50 positions the connection start at 50 pixels from the top edge. Use with X to define the exact starting point when not using named connectors.

C#
public double? Y { get; set; }