Class SankeyDataLink
Inheritance
Namespace: Telerik.Blazor.Components
Assembly: Telerik.Blazor.dll
Syntax
public class SankeyDataLink : Object
Constructors
SankeyDataLink()
Declaration
public SankeyDataLink()
Properties
Color
The color of the link. The color is used when the colorType option is set to static. Accepts a valid CSS color string, including hex and rgb.
Declaration
public string Color { get; set; }
Property Value
System.String
|
ColorType
The color type of the link. The supported values are: "static" - The link color is static. The color is determined by the link's color option.; "source" - The link color is the same as the source node color. or "target" - The link color is the same as the target node color..
Declaration
public Nullable<SankeyLinksColorType> ColorType { get; set; }
Property Value
System.Nullable<SankeyLinksColorType>
|
Highlight
Declaration
public SankeyDataLinkHighlight Highlight { get; set; }
Property Value
SankeyDataLinkHighlight
|
Opacity
The opacity of the links.
Declaration
public Nullable<double> Opacity { get; set; }
Property Value
System.Nullable<System.Double>
|
SourceId
The source node ID of the link. The source node is the node from which the link originates.
Declaration
public object SourceId { get; set; }
Property Value
System.Object
|
TargetId
The target node ID of the link. The target node is the node to which the link points.
Declaration
public object TargetId { get; set; }
Property Value
System.Object
|
Value
The value of the link. The value represents the weight of the link and determines the width of the link.
Declaration
public Nullable<double> Value { get; set; }
Property Value
System.Nullable<System.Double>
|