Module type Graphviz.ATTRIBUTES

The ATTRIBUTES module type defines the interface for the engines.

type graph

Attributes of graphs.

type vertex

Attributes of vertices.

type edge

Attributes of edges.

type subgraph = {
  1. sg_name : string;
    (*

    Box name.

    *)
  2. sg_attributes : vertex list;
    (*

    Box attributes.

    *)
  3. sg_parent : string option;
    (*

    Nested subgraphs.

    *)
}

Attributes of (optional) boxes around vertices.