https://github.com/miomit/graph_dot
Library for creating Graphviz graphs in the dot language
https://github.com/miomit/graph_dot
Last synced: 5 months ago
JSON representation
Library for creating Graphviz graphs in the dot language
- Host: GitHub
- URL: https://github.com/miomit/graph_dot
- Owner: miomit
- License: gpl-3.0
- Created: 2023-11-25T17:40:51.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-03-17T07:46:24.000Z (about 2 years ago)
- Last Synced: 2025-01-04T16:21:55.748Z (over 1 year ago)
- Language: Dart
- Homepage: https://pub.dev/packages/graph_dot
- Size: 315 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
Library for creating Graphviz graphs in the dot language.


## Getting started
Add a dependency to `pubspec.yaml`
```yaml
dependencies:
graph_dot:
```
you will also need the **graphviz** utility.
Fedora
```
sudo dnf install graphviz
```
## Usage
Look in `/example` folder.
```dart
var graph = Graph();
graph.setEdge('A', 'B');
print(graph.toDot);
```
## Additional information
This library is under development. With each new version, a new feature will be added.