Graphviz.NeatoAttributes
type graph = [
| CommonAttributes.graph | |
| `Margin of float * float | (* Sets the page margin (included in the page size). Default value is |
| `Start of int | (* Seed for random number generator. *) |
| `Overlap of bool | (* Default value is |
| `Spline of bool | (*
|
| `Sep of float | (* Edge spline separation factor from nodes. Default value is |
]
Attributes of graphs. They include all common graph attributes and several specific ones. All attributes described in the "Neato User's manual, April 10, 2002" are handled.
type vertex = [
| CommonAttributes.vertex | |
| `Pos of float * float | (* Initial coordinates of the vertex. *) |
]
Attributes of nodes. They include all common node attributes and several specific ones. All attributes described in the "Neato User's manual, April 10, 2002" are handled.
type edge = [
| CommonAttributes.edge | |
| `Id of string | (* Optional value to distinguish multiple edges. *) |
| `Len of float | (* Preferred length of edge. Default value is |
| `Weight of float | (* Strength of edge spring. Default value is |
]
Attributes of edges. They include all common edge attributes and several specific ones. All attributes described in the "Neato User's manual, April 10, 2002" are handled.
Subgraphs have a name and some vertices.