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

Controls the fill color and appearance of shape connector points in their normal state. Connector points are the visual indicators showing where connections can attach to a shape. Use this to customize connector visibility and styling. Example: Use a contrasting color like "#3498DB" to make connection points clearly visible.

Definition

Namespace:Telerik.Blazor.Components

Assembly:Telerik.Blazor.dll

Syntax:

C#
public class DiagramShapeConnectorFillDescriptor : DataVizChildComponentDescriptor

Inheritance: objectDataVizChildComponentDescriptorDiagramShapeConnectorFillDescriptor

Constructors

C#
public DiagramShapeConnectorFillDescriptor()

Methods

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

Dictionary<string, object>

Properties

Sets the background fill color of connector elements on shapes. Use any valid CSS color value such as hex codes (e.g., "#4CAF50"), color names (e.g., "green"), or rgba values. Connector fill color helps distinguish connection points from the shape itself.

C#
public string Color { get; set; }

Sets the transparency level of the connector fill color. Accepts values from 0 (fully transparent) to 1 (fully opaque). For example, 0.8 creates a slightly transparent connector. Use opacity to create subtle connectors that don't dominate the shape appearance.

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