I'm trying to generate layout information for a graph where all of the elements must be laid out in a grid. I would like all coordinates to be integer multiples of the grid-box size.
For example, if I have a grid made up of 1 inch squares, I would like all node coordinates to be a multiple of 72 (the number of points in an inch, if I'm not mistaken). I like the hierarchical layout of dot, so if possible, that's the tool I'd like to use.
I've looked over the element attribute list several times, and I haven't figured out how to do this.
Edit:
The reason I've chosen GraphViz is that it can perform layout, then return that information as text. Other tools seem to just want to render a graph, but I want to render it elsewhere, and I just need to get the layout information.