How to implement custom tooltips?
Abstract: First of all, you must register the JGraph object with the ToolTipManager. To do this, simply place this line of code in your constructor: ToolTipManager.sharedInstance().registerComponent(this) Place this piece of code in your cell subclass. When the pointer is over the cell, an html-rendered tooltip should appear. This method goes into the MyGraphCell class which extends DefaultGraphCell. public String getToolTipString() { return ” Hello, …