2

I'm using JGraphX to draw a graph. I need to draw a graph with multiple edges (joining two vertices) and create a loop on the vertex. Is it possible in JGraphX? For example:

enter image description here

TylerH
  • 20,799
  • 66
  • 75
  • 101
kevinn13
  • 21
  • 2

1 Answers1

1

You can use mxGraph.setAllowLoops(boolean value) method to enable looping. Loops are disabled by default.

caniskit
  • 76
  • 1
  • 4