Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

DOT Language Parser [closed]

Tags:

c#

Does anyone know of a DOT Language (or other GraphViz-ish format) Parser for .NET? I have been experimenting with QuickGraph, but it seems to only support serialization, and not parsing from a stream/string/file.

like image 547
Rex Whitten Avatar asked Aug 08 '10 20:08

Rex Whitten


People also ask

How do I view a .dot file?

How to open a DOT file. You can open DOT files with Microsoft Word in Windows and macOS. The word processor is also available for Android and iOS devices, but only the iOS version supports DOT files. Other word processors can also open DOT files but they may not fully support the formatting of the original templates.

How do I run dot Graphviz on Windows?

For windows: dl the msi and install; Find gvedit.exe in your programs list; Open . dot file in question; Click running person on toolbar; Go to graph -> settings ; change Output file type to file type of your liking and press ok..

What is the dot language called?

Reading Braille Developed in the early 1800s by Louis Braille, Braille is a series of characters, or "cells," that are made up of six raised dot patterns, arranged in a rectangle containing two columns of three dots each.

How do you make a graph on graphviz?

Create a graph object, assemble the graph by adding nodes and edges, and retrieve its DOT source code string. Save the source code to a file and render it with the Graphviz installation of your system. Use the view option/method to directly inspect the resulting (PDF, PNG, SVG, etc.) file with its default application.


2 Answers

Graphviz4Net core includes a DOT parser.

like image 83
Steves Avatar answered Oct 18 '22 19:10

Steves


Yet another DOT parser:

  • Nuget package: https://www.nuget.org/packages/DotParser/
  • Sources: https://github.com/auduchinok/DotParser
like image 3
gsv Avatar answered Oct 18 '22 19:10

gsv