Skip to content
Advertisement

How can I draw with Graphics2D on the JGraphX graph?

How can I can draw with Graphics2D on the JGraphX graph? I tried something like this:

JavaScript

Advertisement

Answer

First, graph.refresh(); will erase the dranw line since it will re-render all the graph on the graphics of the component.

Secondly, don’t forget to call the draw function in the ADT Thread

JavaScript

Other than that, it should work normally as I have succesfully drawn rectangles on the component.

Note however that if the graph is zoomed or the scroll panes are not at the origin you will have to convert the points with :

JavaScript
User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement