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