organization chart
Submitted by Ladislav Nesnera on Sun, 02/19/2012 - 05:21
Hi,
Is it possible by Graphviz to reach chart which looks like Plugin <em></em> Not Found? (particularly overlapping/united edges connected to the centre node's side). Thanks a lot
Recent comments
- I like the look of the nodes,
21 hours 57 min ago - If you put the fixedsize
22 hours 20 min ago - If you put the fixedsize
22 hours 21 min ago - Are there some actual examples around?
23 hours 52 min ago - There are two features
1 day 24 min ago - There is nothing built into
1 day 36 min ago - I was able to resolve this
2 days 3 hours ago - x11 event bindings
3 days 20 hours ago - One could probable work
3 days 21 hours ago - Would it be possible to
3 days 22 hours ago

Re: erg
Thanks for reply. It sounds promising (and the GRAMPS - graphviz based project too) but can you share more detail, please. I looked for united edges in the documentation but without result :-( My source is Human Resources database and there is no problem to generate appropriate DOT file. My current the best DOT file and SVG output (As seems this forum has significant technical problems :( )
organization chart
It is possible, but it doesn't happen automatically. The user needs to create an augmented graph to model the united edges. With a few assumptions, this can be done automatically.
organization chart
Thanks for reply. It sounds promising (and the GRAMPS - graphviz based project too) but can you share more detail, please. I looked for united edges in the documentation but without result :-(
My source is Human Resources database and there is no problem to generate appropriate DOT file. My current the best DOT file and SVG output (
organization chart
Since the type of united edges you want is not implemented, there is nothing in the documentation. The standard trick is to replace the original edges with dummy point nodes and various axis-aligned line segments. If your input graph satisfies some simple constraints, this process can be automated. As an example, one can use the following pipeline, which uses dot to position the nodes, gvpr to create the auxiliary graph, and neato to add the edges and create the output:
dot orgChart.gv | gvpr -c -forg.g | neato -Tpdf -n > orgChart.pdf
Here are org.g and orgChart.pdf.
Re: erg
Additionally - many thanks. Your solution works perfectly. I was afraid of limit 100 nodes for neato (http://www.graphviz.org/), but my graph has more than 300 nodes and everything works without problem.
Great job (y)