Graph[] has a tendency to cut off vertex labels in Mathematica. I am looking for a robust workaround.
Example:
Graph[{1 -> 2, 2 -> 3, 3 -> 1}, VertexLabels -> "Name"]
![Graph[] cuts off the label '2'](https://i.stack.imgur.com/29GgU.png)
My present workaround:
SetOptions[Graph, ImagePadding -> 12]
This is not robust because the value of ImagePadding needs to be manually adjusted depending on the label size.
Apparently using
FullGraphicson theGraphobject will fix the clipping for the purpose of display, at the expense of interactivity.Per the comment below,
Show[]works as well, and avoids modifying the graphics.