Given a node like so, on a white background
"test" [
style="filled,dashed"
shape=box
color=lightgray
label="Hello World"
];
How do I make the dashed border black?
I found a solution that works in my case.
"test" [
style="filled,dashed"
shape=box
color=black
fillcolor=lightgray
label="Hello World"
];
It was misleading because if fillcolor
is not specified, it appears it will default to color
.
So You can actually get this with one less line:
"test" [
style="filled,dashed"
shape=box
fillcolor=lightgray
label="Hello World"
];
In my testing at least including a fillcolor
with no color
defaults to black border.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With