Skip to main content

SankeyLink Class

Definition

Assembly:Avalonia.Controls.Charts
Package:Avalonia.Controls.Charts

Represents a link (flow connection) between two nodes in a Sankey diagram, with a value indicating the magnitude of the flow.

public class SankeyLink

Inheritance: object -> SankeyLink

Constructors

NameDescription
SankeyLinkNo summary available.
public SankeyLink()

Properties

NameDescription
SourceGets or sets the source node ID.
TargetGets or sets the target node ID.
ValueGets or sets the magnitude of the flow represented by the link.

Source Property

Gets or sets the source node ID.

public string Source { get; set; }

Target Property

Gets or sets the target node ID.

public string Target { get; set; }

Value Property

Gets or sets the magnitude of the flow represented by the link.

public double Value { get; set; }