Supported Fonts

What fonts are supported by the label object in GoDiagram? I have looked for a list of the supported fonts in the help files but, haven’t found one. Am I just missing it?

I need to set the fonts for the labels I am adding to diagram nodes to something that is monospaced, and is sans serif.

Thanks much.

It’s whatever .NET’s System.Drawing supports, which depends on what platform you are running on.

Perhaps you could use System.Drawing.FontFamily.GenericMonospace. Or else you’ll need to search for a suitable font using the FontFamily class.

Thanks!