I'd like to know if there is a list of possible attributes (and their possible values) to use when creating a new vertex in JGraphX.
I know the method is graph.insertVertex(parent, null, vertexText, 0, 0, width, height, "whiteSpace=wrap;fillColor=red")
; but I don't know which attributes can be put other than whiteSpace
or fillColor
. For example I need to add padding to the text in the vertexes, but I don't know how.
Any help would be appreciated; if I made any mistakes making the question, please tell me and I'll fix them ^^