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:
public class DiagramShapeConnectorFillDescriptor : DataVizChildComponentDescriptor
Inheritance: objectDataVizChildComponentDescriptorDiagramShapeConnectorFillDescriptor
Constructors
public DiagramShapeConnectorFillDescriptor()
Methods
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.
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.
public double? Opacity { get; set; }