How can i underline as apecific field in a graphviz record

248 Views Asked by At

Referring to How to underline text as part of a label? where underlining is explained.

Is ist possible to combine underlining with column-layout?

enter image description here

digraph g {
graph [ rankdir = "LR"];
node [
shape = "record"
];
"other" [
label = <<u>Tada</u>>;
];
"something" [
label = " name | property"
];
}

I am open for suggestions with other frameworks like mermaid (preferably supported by hackmd)

1

There are 1 best solutions below

0
On

You can use an HTML-like label (table) (using <u> tags inside a table cell), although it's pretty heavy:

digraph g {
graph [ rankdir = "LR"];
node [
shape = "plaintext"
];
"something" [
    label=<
        <TABLE ALIGN="LEFT" border="0" CELLBORDER="1" CELLSPACING="0" CELLPADDING="4">
            <TR>
                <TD>name</TD>
            </TR>
            <TR>
                <TD><u>property</u></TD>
            </TR>
        </TABLE>
    >
];
}

enter image description here