Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Records spanning over multiple lines in graphviz

I am trying to visualize a rather complex structure in the dot language. Because the record is big, I would like to write the code in mulitple lines. So instead of:

A11[label="A.11 Access Control|{A.11.1 Business requirements for access control|A.11.2 User access management}|{A.11.3 User responsibilities|A.11.4 Network access control}|{A.11.5 Operating System access control|A.11.6 Application & information access control}|A.11.7 Mobile computing & teleworking"];

I would like to enter it somewhat like this

A11[label="A.11 Access Control|
           {A.11.1 Business requirements for access control|A.11.2 User access management}|
           {A.11.3 User responsibilities|A.11.4 Network access control}|
           {A.11.5 Operating System access control|A.11.6 Application & information access control}|
           A.11.7 Mobile computing & teleworking"];

Unfortunately the parser for dot complains about a "string running past line end" or something alike. Does anyone know how to denote a linebreak in the code? I tried a \ at the end of the line, but it didn't seem to work.

thanks in advance

like image 341
er4z0r Avatar asked Oct 01 '10 11:10

er4z0r


1 Answers

I am guessing you want something like this:

graph G{
A11[label="A.11 Access Control|\n\
{A.11.1 Business requirements for access control|A.11.2 User access management}|\n\
{A.11.3 User responsibilities|A.11.4 Network access control}|\n\
{A.11.5 Operating System access control|A.11.6 Application & information access control}|\n\
A.11.7 Mobile computing & teleworking"];
}

You can also do like

label = "line1\n" +
        "line2\n" + ...
like image 121
livibetter Avatar answered Oct 26 '22 21:10

livibetter