Module Avl_graphviz.Neato.Attributes


module Attributes: sig  end


type graph = [ `Center of bool
| `Fontcolor of Avl_graphviz.color
| `Fontname of string
| `Fontsize of int
| `Label of string
| `Margin of float * float
| `Orientation of [ `Landscape | `Portrait]
| `Overlap of bool
| `Page of float * float
| `Pagedir of [ `LeftToRight | `TopToBottom]
| `Sep of float
| `Size of float * float
| `Spline of bool
| `Start of int]
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 node = [ `Color of Avl_graphviz.color
| `Fontcolor of Avl_graphviz.color
| `Fontname of string
| `Fontsize of int
| `Height of float
| `Label of string
| `Orientation of float
| `Peripheries of int
| `Pos of float * float
| `Regular of bool
| `Shape of
[ `Box
| `Circle
| `Diamond
| `Doublecircle
| `Ellipse
| `Plaintext
| `Polygon of int * float
| `Record]
| `Style of [ `Bold | `Dashed | `Dotted | `Filled | `Invis | `Solid]
| `Width of float]
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 = [ `Color of Avl_graphviz.color
| `Decorate of bool
| `Dir of [ `Back | `Both | `Forward | `None]
| `Fontcolor of Avl_graphviz.color
| `Fontname of string
| `Fontsize of int
| `Id of string
| `Label of string
| `Labelfontcolor of Avl_graphviz.color
| `Labelfontname of string
| `Labelfontsize of int
| `Len of float
| `Style of [ `Bold | `Dashed | `Dotted | `Invis | `Solid]
| `Weight of float]
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.