Class
DiagramShapeConnectorFillDescriptor

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:

cs-api-definition
public class DiagramShapeConnectorFillDescriptor : DataVizChildComponentDescriptor

Inheritance: objectDataVizChildComponentDescriptorDiagramShapeConnectorFillDescriptor

Constructors

DiagramShapeConnectorFillDescriptor()

Declaration

cs-api-definition
public DiagramShapeConnectorFillDescriptor()

Properties

Color

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.

Declaration

cs-api-definition
public string Color { get; set; }

Property Value

string

Opacity

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.

Declaration

cs-api-definition
public double? Opacity { get; set; }

Property Value

double?

Methods

Serialize()

Declaration

cs-api-definition
public Dictionary<string, object> Serialize()

Returns

Dictionary<string, object>