在白色背景上给出像这样的节点
"test" [
style="filled,dashed"
shape=box
color=lightgray
label="Hello World"
];
如何使虚线边框变黑?
答案 0 :(得分:19)
我找到了一个适用于我的解决方案。
"test" [
style="filled,dashed"
shape=box
color=black
fillcolor=lightgray
label="Hello World"
];
这是误导性的,因为如果未指定fillcolor
,则会显示默认为color
。
答案 1 :(得分:3)
所以你可以用更少的一行来实现这个目标:
"test" [
style="filled,dashed"
shape=box
fillcolor=lightgray
label="Hello World"
];
在我的测试中,至少包括fillcolor
,默认为color
黑色边框。