Last updated:
0 purchases
graph dot
Library for creating Graphviz graphs in the dot language.
Getting started #
Add a dependency to pubspec.yaml
dependencies:
graph_dot:
copied to clipboard
you will also need the graphviz utility.
Fedora
sudo dnf install graphviz
copied to clipboard
Usage #
Look in /example folder.
var graph = Graph();
graph.setEdge('A', 'B');
print(graph.toDot);
copied to clipboard
Additional information #
This library is under development. With each new version, a new feature will be added.
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.