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

Configures tooltips that appear when users hover over diagram connections. Use this to display additional information, connection metadata, or contextual help about relationships. Supports custom templates and formatting to show connection properties, data values, or descriptive text.

Definition

Namespace:Telerik.Blazor.Components

Assembly:Telerik.Blazor.dll

Syntax:

C#
public class DiagramConnectionTooltipDescriptor : DataVizChildComponentDescriptor

Inheritance: objectDataVizChildComponentDescriptorDiagramConnectionTooltipDescriptor

Constructors

C#
public DiagramConnectionTooltipDescriptor()

Methods

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

Dictionary<string, object>

Properties

Sets custom CSS class names to style the tooltip appearance. Use this to apply custom colors, fonts, borders, or other styling to match your application theme. For example, "connection-tooltip info" applies both connection-tooltip and info classes.

C#
public string Class { get; set; }

Specifies the template of the connection tooltip. Can be used for adding custom tooltip content.

C#
public RenderFragment Template { get; set; }

Controls whether tooltips display when users hover over connection lines. When set to true, tooltips appear with connection information. Set to false to disable tooltip display. Tooltips help users understand connection relationships without selecting the connection.

C#
public bool? Visible { get; set; }