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

Controls the fill color and appearance of shape connector points when hovered. Use this to change connector interior color on hover, making it clear which connection point is being targeted. Part of the DiagramShapeConnectorHoverDescriptor styling. Example: Brighten fill to "#5DADE2" on hover for clear visual feedback.

Definition

Namespace:Telerik.Blazor.Components

Assembly:Telerik.Blazor.dll

Syntax:

C#
public class DiagramShapeConnectorHoverFillDescriptor : DataVizChildComponentDescriptor

Inheritance: objectDataVizChildComponentDescriptorDiagramShapeConnectorHoverFillDescriptor

Constructors

C#
public DiagramShapeConnectorHoverFillDescriptor()

Methods

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

Dictionary<string, object>

Properties

Sets the background fill color of connectors when users hover over them. Use any valid CSS color value such as hex codes (e.g., "#81C784"), color names (e.g., "lightgreen"), or rgba values. A bright hover color draws attention to the active connector point.

C#
public string Color { get; set; }

Sets the transparency level of the connector hover fill color. Accepts values from 0 (fully transparent) to 1 (fully opaque). For example, 0.9 creates a prominent but slightly transparent hover effect. Use higher opacity values to create clear hover feedback.

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