free visual editor for graph (dot) files

35,961

To save time those eager to try existing programs handling DOT graphs:

  • dotty can display DOT graphs and with little luck you can move its nodes with a mouse, nothing more, and you can easily segfault as a bonus (I tried latest stable graphviz)
  • lefty is only a special-purpose language interpreter used by dotty, nothing to look at
  • KGraphEditor is an empty wishful project (a QT window and a few buttons)
  • gvedit is not really a graph editor: it provides a simple text editor and you hit F5 to run a layout tool and open a picture; you can actually get more functionality from configuring your own favourite text editor
  • grappa is an abandoned java applet, which I failed to run
  • interestingly, dia can export to DOT ("PyDia DOT Export"), but due to its buggy printing, you have to post-process the files to use them
  • graphedit can read in DOT a graph and you can move its nodes around and change their colors
  • Eclipse people started working on DOT support in GEF4, so it can display DOT graphs
  • GraphUI has a very interesting demonstration video, but beware: although it might seem that the graph is being created by clicking and dragging, in reality all editing happens through the keyboard, using shortcuts. On the plus side, contextual instructions are always available showing which shortcuts do what.
  • DotEditor claims a tree editor, modifying node attributes/color/shape with mouse.

The graph editors mentioned in other answers, yEd (a Java application) and JointJS/Rappid (a JaveScript thing) apparently have nothing to do with DOT (tried both).

I believe there exist no working DOT-handling graph editor out there at all.

Share:
35,961

Related videos on Youtube

intuited
Author by

intuited

// shenanigans

Updated on May 27, 2020

Comments

  • intuited
    intuited about 4 years

    Is there a free (as in "cheers"), linux-compatible, interactive visual editor for graphviz or other graphs? aptitude seems to be drawing a blank.

    edit: "cheers" means both "beer" and "speech". meta-edit: I guess it should be "free as in beach".

    edit 2: Maybe a suitable svg editor would be a more realistic goal. I basically want something that can be used to conveniently create a collection of labeled shapes and lines which connect them. Actually it would probably make more theoretical sense to extract the graph from this data, since it includes both semantic data (the graph) and presentation data (the way it's arranged on the screen, the colours used, etc). Is there a way to lay out labeled shapes conveniently with inkscape or some other free vector graphics editor? I really need rearranging of the nodes, and (re)flowing of the text in them, to happen with maximum convenience.

    I've also realized that this is really a superuser question. I was going to repost it over there when I found an existing question that seems likely to provide me with an answer: dia.

    edit 3: dia seems useful except that it doesn't seem to be possible to get the textual contents of node objects to wrap in any useful manner (ie any way other than by inserting manual line breaks). This is kind of a dealbreaker, since it screws most of the convenience factor that's my incentive to do things this way rather than with a text editor or a pen and paper. But it supports some sort of event model and Python-based scripting, so I'm going to dig around a bit and see if I can use python to wrap the text in response to content changes. Unless one of you lovely people has a better idea..? Basically I want to have the option to explicitly set the node size via GUI interaction, and have the contents wrap and rescale (within a certain range of font sizes) to fit it. Rich text would be pretty useful.

    In other words, this is actually a valid SO question at this point, since it appears to require coding.

  • sdaau
    sdaau about 10 years
    Thanks for that list; just wanted to add that dotty is the GUI that uses dot as an engine, so you cannot actually fix node positions there; you can fix node positions in neato (stackoverflow.com/a/5344221/277826) but then the same GUI like dotty that uses neato instead is called lneato.
  • t7ko
    t7ko over 9 years
    No, there is one such editor: TINTFU, tintfu.sourceforge.net . It is WYSIWUG editor for dot files. The .dot output file is not that nice though, but still...
  • thomie
    thomie over 9 years
    Very basic dot graph editing can be done with ocamlgraph-editor.
  • waldyrious
    waldyrious about 9 years
    @t7ko TINTFU is definitely not "one such editor". You don't manipulate the graph directly; instead, you have to click buttons that open dialogs where you need to fill up the properties that then build the graph. For instance, to link two nodes, you have to click the "edge" button, then manually type the names of the source and target nodes you want to connect (no auto-complete) and then click the ok button (simply pressing Enter doesn't work). That's certainly not what I'd call "visual editing of a DOT graph".
  • t7ko
    t7ko about 9 years
    @waldyrious well, you didn't say you want "mouse-only" editor. TINTFU is WYSIWYG graph editor, you don't edit .dot source code, you edit a graph. It is able to load and save graphs in DOT format. It is working. I thought this will perfectly match your specification as it is stated in your original answer (see last sentence). Anyway. It's not perfect, but it's still something for those who don't want to go to .dot source editing.
  • waldyrious
    waldyrious about 9 years
    @t7ko I didn't mean to sound harsh or dismissive, just to provide a heads-up for those who, like I did, might not realize at first how TINTFU works. I honestly don't see much difference between specifying the graph properties as text in a document or as text in a GUI widget, apart form perhaps having the syntax handled for you automatically. As I see it, the main issue is not about using mouse only (you use the mouse to click the buttons in TINTFU anyway), but about manipulating the graph directly, rather than a text (or property-list) representation of it.
  • Mawg says reinstate Monica
    Mawg says reinstate Monica over 6 years
    "One Rappid license per single developer. Priced at €1500 each license ", and you "don't know about dot files import though"?! Downvote. At best this might have been a comment. An answer should be more than a link and should explain how it answers the question
  • Radio Controlled
    Radio Controlled over 4 years
    I found another option after trying the above alternatives which all failed to solve my problem: I often want to remove nodes and edges to create subsets of my graphs for publication. The solution is to export the graph to PDF dot -Tpdf ingraph.dot -o outgraph.pdf, then open with LibreOffice Draw and remove all the nodes and edges, then export to outgraph_small.pdf, then pdfcrop outgraph_small.pdf. You can even modify colors, texts etc. It might get a little sketchy if you change too much, though.
  • Willem
    Willem about 4 years
    yEd Live supports importing of dot files since 2020, and it works very neat! yworks.com/yed-live
  • t-b
    t-b over 3 years
    Actually dotty works here on debian buster compiled from graphviz 2.44.1 quite well. It is still an old X window app but actually the only one I've testing which allows to edit/add/remove nodes and edges. And it operates on dot files. Documentation is at graphviz.org/pdf/dottyguide.pdf.
  • Johan
    Johan over 3 years
    As an alternative, if you are okay with editing the dot source code and immediately seeing the resulting graph, I can highly recommend the Graphvizer plugin for Sublime Text 3, see packagecontrol.io/packages/Graphvizer.
  • Cerin
    Cerin about 3 years
    I know this answer is old, but virtually all of these programs either don't work, are abandoned or are unusually bad.