SankeyNode Class
Definition
Represents a node in a Sankey diagram, which visualizes flow and relationships between entities with weighted connections.
public class SankeyNode
Constructors
| Name | Description |
|---|---|
| SankeyNode | No summary available. |
SankeyNode Constructor
public SankeyNode()
Properties
| Name | Description |
|---|---|
| Height | Gets or sets the rendered height of the node in device-independent pixels. |
| IncomingLinks | Gets the collection of incoming links. |
| IncomingValue | Gets or sets the incoming value. |
| Name | Gets or sets the display name of the node. |
| OutgoingLinks | Gets the collection of outgoing links. |
| OutgoingValue | Gets or sets the outgoing value. |
| Rect | Gets or sets the layout rectangle occupied by the node. |
| Value | Gets or sets the total magnitude represented by the node. |
| X | Gets or sets the X coordinate. |
| Y | Gets or sets the Y coordinate. |
Height Property
Gets or sets the rendered height of the node in device-independent pixels.
public double Height { get; set; }
IncomingLinks Property
Gets the collection of incoming links.
public System.Collections.Generic.List<Avalonia.Controls.Charts.SankeyLink> IncomingLinks { get; set; }
IncomingValue Property
Gets or sets the incoming value.
public double IncomingValue { get; set; }
Name Property
Gets or sets the display name of the node.
public string Name { get; set; }
OutgoingLinks Property
Gets the collection of outgoing links.
public System.Collections.Generic.List<Avalonia.Controls.Charts.SankeyLink> OutgoingLinks { get; set; }
OutgoingValue Property
Gets or sets the outgoing value.
public double OutgoingValue { get; set; }
Rect Property
Gets or sets the layout rectangle occupied by the node.
public Avalonia.Rect Rect { get; set; }
Value Property
Gets or sets the total magnitude represented by the node.
public double Value { get; set; }
X Property
Gets or sets the X coordinate.
public double X { get; set; }
Y Property
Gets or sets the Y coordinate.
public double Y { get; set; }