Vertex.label -> IKeyedEntity.Key
Node
01 Syntax
Microsoft.VisualBasic.Data.visualize.Network.Graph.Node
02 Methods
| Name | Overloads | Summary |
|---|---|---|
| .ctor | 1 | 在这里是用的是unique id进行初始化,对于Display title则可以在GraphData.label属性上面设置 |
| EnumerateAdjacencies | 1 | 枚举出所有的与当前节点直接相邻接的节点列表 |
| adjacentTo | 1 | Indicates if the node is adjacent to the node specified by id |
| op_Equality | 1 | check vertex node equivalent via the Vertex.label equivalent. |
| op_Inequality | 1 | check vertex node un-equivalent via the Vertex.label un-equivalent |
| Clone | 1 | make data clone of current graph vertex node |
03 Properties
| Name | Overloads | Summary |
|---|---|---|
| data | 1 | the graph node metadata, includes styles, groups, positions data |
| adjacencies | 1 | Get all of the edge collection that connect to current node object |
| pinned | 1 | 这个节点是被钉住的?在进行布局计算的时候,钉住的节点将不会更新位置 |
| Metadata | 1 |
04 Members
#ctor(
String, NodeData)在这里是用的是unique id进行初始化,对于Display title则可以在GraphData.label属性上面设置
Parameters
| Name | Type | Description |
|---|---|---|
iId | String | - |
iData | NodeData | - |
EnumerateAdjacencies
枚举出所有的与当前节点直接相邻接的节点列表
adjacentTo(Node)
Indicates if the node is adjacent to the node specified by id
Parameters
| Name | Type | Description |
|---|---|---|
node | Node | - |
check vertex node equivalent via the Vertex.label equivalent.
Parameters
check vertex node un-equivalent via the Vertex.label un-equivalent
Parameters
Clone
make data clone of current graph vertex node
data
the graph node metadata, includes styles, groups, positions data
adjacencies
Get all of the edge collection that connect to current node object
pinned
这个节点是被钉住的?在进行布局计算的时候,钉住的节点将不会更新位置
Metadata(
String)Parameters
| Name | Type | Description |
|---|---|---|
name | String | - |
Returns
returns nothing if the node meta Node.data is nothing orelse node data contains no such given key name.