Class
DiagramShapeConnectorHoverStrokeDescriptor

Controls the outline stroke color, width, and style of shape connector points when hovered. Use this to emphasize connector borders during hover interactions, helping users precisely target connection points. Part of the DiagramShapeConnectorHoverDescriptor styling. Example: Thicken stroke to 2px on hover for enhanced visibility.

Definition

Namespace:Telerik.Blazor.Components

Assembly:Telerik.Blazor.dll

Syntax:

cs-api-definition
public class DiagramShapeConnectorHoverStrokeDescriptor : DataVizChildComponentDescriptor

Inheritance: objectDataVizChildComponentDescriptorDiagramShapeConnectorHoverStrokeDescriptor

Constructors

DiagramShapeConnectorHoverStrokeDescriptor()

Declaration

cs-api-definition
public DiagramShapeConnectorHoverStrokeDescriptor()

Properties

Color

Sets the border color of connectors when users hover over them. Use any valid CSS color value such as hex codes (e.g., "#388E3C"), color names (e.g., "green"), or rgba values. A contrasting hover border makes connectors easily identifiable during connection creation.

Declaration

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

Property Value

string

DashType

Sets the line style pattern for connector borders on hover. Solid creates a continuous border (default). Dash creates a dashed border pattern. Dot creates a dotted border pattern. Use solid borders for clear hover feedback on connection points.

Declaration

cs-api-definition
public DashType? DashType { get; set; }

Property Value

DashType?

Width

Sets the thickness of connector borders in pixels when users hover over them. For example, 2 creates a more prominent hover border than the default connector border. Thicker borders improve visibility and provide clear hover feedback.

Declaration

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

Property Value

double?

Methods

Serialize()

Declaration

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

Returns

Dictionary<string, object>