Skip to main content

SankeyNode Class

Definition

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

Represents a node in a Sankey diagram, which visualizes flow and relationships between entities with weighted connections.

public class SankeyNode

Inheritance: object -> SankeyNode

Constructors

NameDescription
SankeyNodeNo summary available.

SankeyNode Constructor

public SankeyNode()

Properties

NameDescription
HeightGets or sets the rendered height of the node in device-independent pixels.
IncomingLinksGets the collection of incoming links.
IncomingValueGets or sets the incoming value.
NameGets or sets the display name of the node.
OutgoingLinksGets the collection of outgoing links.
OutgoingValueGets or sets the outgoing value.
RectGets or sets the layout rectangle occupied by the node.
ValueGets or sets the total magnitude represented by the node.
XGets or sets the X coordinate.
YGets 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; }

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; }

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; }