Skip to content

A simple Dart package for writing GraphViz dot files

License

Notifications You must be signed in to change notification settings

kevinvandenbreemen/gviz

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

34 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Pub Package Build Status

A simple Dart package for writing GraphViz dot files.

Example Tasks with Graphs

Add a Sub-graph

GViz graph = GViz();
Gviz subGraph = Gviz(name: 'SG');   //  Needs to have a name other than parent graph
subGraph
..addNode('A')
..addNode('B')
..addNode('C');

subGraph
..addEdge('A', 'B')
..addEdge('B', 'C')
..addEdge('C', 'A');

graph.addSubgraph(subGraph);
graph.addEdge('1', 'A');

About

A simple Dart package for writing GraphViz dot files

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Dart 100.0%