A library for generating Graphviz DOT language files. The code is forked from dot-rust with new API for easier to use.
The very basic three parts of a DOT file and in this library is Graph
,
Node
and Edge
. Graph
is the entry point of the library. You could
generate an empty graph .dot file by simply use:
```rust use dot_graph::{Graph, Kind};
let graph = Graph::new("empty_graph", Kind::Digraph);
let dotstring = graph.todot_string().unwrap();
asserteq!(dotstring, r#"digraph empty_graph { } //!"#); ```
In order to add some basic nodes and edges:
```rust use dot_graph::{Graph, Kind, Node, Edge};
let mut graph = Graph::new("single_edge", Kind::Digraph);
graph.addnode(Node::new("N0")); graph.addnode(Node::new("N1")); graph.add_edge(Edge::new("N0", "N1", "E"));
let dotstring = graph.todot_string().unwrap();
asserteq!(dotstring, r#"digraph single_edge { N0[label="N0"]; N1[label="N1"]; N0 -> N1[label="E"]; } "#); ```
If you want add some more attributes, like style, arrow, color, you could call these methods in a chain, like:
```rust use dot_graph::{Graph, Kind, Node, Edge, Style};
let mut graph = Graph::new("single_edge", Kind::Digraph);
graph.addnode(Node::new("N0")); graph.addnode(Node::new("N1")); graph.add_edge(Edge::new("N0", "N1", "E").style(Style::Bold).color(Some("red")));
asserteq!(graph.todotstring().unwrap(), r#"digraph singleedge { N0[label="N0"]; N1[label="N1"]; N0 -> N1[label="E"][style="bold"][color="red"]; } "#); ```
For more examples, please check the tests.
The library is under active development, we'll include more dot attributes in the future.
dot_graph is primarily distributed under the terms of both the MIT license and the Apache License (Version 2.0).
See LICENSE-APACHE and LICENSE-MIT for details.
rudg: Rust UML Diagram Generator. A library for generating UML diagram from Rust source code.