GoText BackgroundColor

Hello,


On my graph, each node has a label of type GoText placed above it.I would like to change the colors a bit.

Setting the TextColor property works fine:
myNode.Label.TextColor = Color.Yellow;

Setting the BackgroundColor doesn’t work:
targetLoc.Label.BackgroundColor = Color.DarkGray;
Nothing happens when I try this.How could I change it?

Thanks!

Filip

Set GoText.TransparentBackground = false
(Also note the GoText.BackgroundOpaqueWhenSelected property.)

Thank you Walter.I will try that tomorrow( is late in the evening here now).Regards,

Filip