I need help with formatting a dot graph. To simplify my question, I have a dot code here which I run through a dot tool:
digraph G
{
TestNode [label="Test Node", shape="egg" style="filled" color="yellow"]
}
results in this:

I want to have a black outline to this node. How can I do that?
Using
fillcolortogether withcolordoes achieve what you’re after:From the documentation: