I use dot and Graphviz in doxygen to create a user guide for my HTML code. The doxygen code looks something like this:
/**<br> *@addtogroup MainProgram * @dot * digraph G { * Main [label = "Main()"]; * START [label = "Start"]; * FINISH [label = "Finish"]; * * START -> Main; * Main -> FINISH; * } * * @enddot */
This, of course, creates a nice picture. Unfortunately, the image does not display the way I want on the HTML page. He is always focused on the page. I want the alignment to be on the left side of the page. The generated HTML code looks like this:
<div align="center"> <img src="inline_dotgraph_2.dot.gif" alt="inline_dotgraph_2.dot" border="0" usemap="#inline_dotgraph_2.dot.map"> <map name="inline_dotgraph_2.dot.map" id="inline_dotgraph_2.dot.map"></map> </div>
Can anyone help me? This is either an oxygen problem or a graphics / dot problem. I can't seem to find the answer.
Thanks,
Maurice
source share