I am looking for a way how to display details of a node (as a popup) on MouseOver. Unfortunately the Jung2 tutorial does not provide any information how to implement this kind of functionality. Could anybody share a code sample or point me to an example on the web?

link|improve this question

80% accept rate
feedback

2 Answers

up vote 0 down vote accepted

PluggableRendererDemo does this.

link|improve this answer
feedback

use VisualizationViewer.setVertexToolTipTransformer

From the EdgeLabelDemo you can see a simple example is to use the built-in transformer:

vv.setVertexToolTipTransformer(new ToStringLabeller<Integer>());

You can also do with edges:

vv.setEdgeToolTipTransformer(new Transformer<Number,String>(){
    public String transform(Number e) {
        return "Edge:"+graph.getEndpoints(e).toString();
    }
});
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.