SankeyLink Class
Definition
Represents a link (flow connection) between two nodes in a Sankey diagram, with a value indicating the magnitude of the flow.
public class SankeyLink
Constructors
| Name | Description |
|---|---|
| SankeyLink | No summary available. |
SankeyLink Constructor
public SankeyLink()
Properties
| Name | Description |
|---|---|
| Source | Gets or sets the source node ID. |
| Target | Gets or sets the target node ID. |
| Value | Gets 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; }