以下是使用点语言的代码。
subgraph cluster1
{
node[style=filled];
color=blue;
b0->b1;
label ="Tada"; // I want this to show as underlined.
}
答案 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.
}
结果如下:
请注意,您的color=blue
语句未应用于任何元素。我把它移到node
。