如何将文本作为标签的一部分加下划线?

时间:2014-03-17 13:57:44

标签: graphviz

以下是使用点语言的代码。

subgraph cluster1
            {
            node[style=filled];
            color=blue;
            b0->b1;

            label ="Tada"; // I want this to show as underlined.
            }

1 个答案:

答案 0 :(得分:6)

您可以使用HTML-like labels<u>代码:

digraph cluster1
{
    node[style=filled, color=blue];
    b0->b1;

    label = <<u>Tada</u>>; // I want this to show as underlined.
}

结果如下:

Tada!

请注意,您的color=blue语句未应用于任何元素。我把它移到node