| Modifier and Type | Method and Description |
|---|---|
MXVertex |
MXGraph.createVertex(String value,
int x,
int y,
int width,
int height,
String style,
boolean relative)
Creates a new vertex using the given coordinates.
|
MXVertex |
MXEdge.getSource()
Returns the source vertex.
|
MXVertex |
MXEdge.getTarget()
Returns the target vertex.
|
MXVertex |
MXGraph.getVertex(String id) |
MXVertex |
MXGraph.insertVertex(String value,
int x,
int y,
int width,
int height,
String style,
boolean relative)
Inserts a new vertex using the given coordinates.
|
| Modifier and Type | Method and Description |
|---|---|
Map<String,MXVertex> |
MXGraph.getVertices() |
| Modifier and Type | Method and Description |
|---|---|
MXEdge |
MXGraph.createEdge(String value,
MXVertex source,
MXVertex target,
String style)
Creates a new edge using the given source and target as the terminals of the new edge.
|
MXEdge |
MXGraph.insertEdge(String value,
MXVertex source,
MXVertex target,
String style)
Inserts a new edge using the given source and target as the terminals of the new edge.
|
| Constructor and Description |
|---|
MXEdge(MXGraph graph,
String value,
String style,
MXVertex source,
MXVertex target)
Creates an edge within the specified graph.
|
Copyright © 2023 Fujion Framework. All rights reserved.