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

Configures the interactive handles that appear on a selected diagram connection. These handles allow users to manipulate connection routing points, endpoints, and path shape. Use this to customize handle size, color, and stroke via DiagramConnectionSelectionHandlesFillDescriptor and DiagramConnectionSelectionHandlesStrokeDescriptor. Part of the DiagramConnectionSelectionDescriptor configuration.

Definition

Namespace:Telerik.Blazor.Components

Assembly:Telerik.Blazor.dll

Syntax:

C#
public class DiagramConnectionSelectionHandlesDescriptor : DataVizChildComponentDescriptor

Inheritance: objectDataVizChildComponentDescriptorDiagramConnectionSelectionHandlesDescriptor

Constructors

C#
public DiagramConnectionSelectionHandlesDescriptor()

Methods

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

Dictionary<string, object>

Properties

Configures the fill color of selection handle elements. Use DiagramConnectionSelectionHandlesFillDescriptor to set the background color of the draggable handles. Distinct handle colors help users identify interactive control points.

C#
public DiagramConnectionSelectionHandlesFillDescriptor Fill { get; set; }

Sets the height of selection handle elements in pixels. For example, 8 creates an 8-pixel tall handle, while 12 creates a larger, easier-to-grab handle. Larger handles improve usability on touch devices. Use with Width to control handle size.

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

Configures the border stroke of selection handle elements. Use DiagramConnectionSelectionHandlesStrokeDescriptor to set the outline color of the draggable handles. Border styling improves handle visibility against different backgrounds.

C#
public DiagramConnectionSelectionHandlesStrokeDescriptor Stroke { get; set; }

Sets the width of selection handle elements in pixels. For example, 8 creates an 8-pixel wide handle, while 12 creates a larger, easier-to-grab handle. Larger handles improve usability on touch devices. Use with Height to control handle size.

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