NetworkNode Class
Definition
Represents a node in the network graph.
public class NetworkNode
Constructors
| Name | Description |
|---|---|
| NetworkNode | No summary available. |
NetworkNode Constructor
public NetworkNode()
Properties
| Name | Description |
|---|---|
| Id | Gets or sets the unique identifier of the node. |
| Label | Gets or sets the display label of the node. |
| VelocityX | Gets or sets the X-velocity for force simulation. |
| VelocityY | Gets or sets the Y-velocity for force simulation. |
| X | Gets or sets the X-coordinate of the node. |
| Y | Gets or sets the Y-coordinate of the node. |
Id Property
Gets or sets the unique identifier of the node.
public string Id { get; set; }
Label Property
Gets or sets the display label of the node.
public string Label { get; set; }
VelocityX Property
Gets or sets the X-velocity for force simulation.
public double VelocityX { get; set; }
VelocityY Property
Gets or sets the Y-velocity for force simulation.
public double VelocityY { get; set; }
X Property
Gets or sets the X-coordinate of the node.
public double X { get; set; }
Y Property
Gets or sets the Y-coordinate of the node.
public double Y { get; set; }