Search found 5 matches
[phpBB Debug] PHP Warning: in file [ROOT]/vendor/twig/twig/lib/Twig/Extension/Core.php on line 1275: count(): Parameter must be an array or an object that implements Countable- 29 Dec 2012 01:47
- Forum: Visual Results
- Topic: Visualizing Dynamic network using OpenGL viz engine
- Replies: 1
- Views: 3354
Visualizing Dynamic network using OpenGL viz engine
Hi, I want to use Gephi Visualization API in my Java application, I want to visualize a dynamic network into a JPanel. I tried to do it using preview API but i needed to refresh the processing target every time network data changed. May aim is to have real time rendering of graph changes like in the...
- 13 Dec 2012 20:52
- Forum: Visual Results
- Topic: Enable Node selection in Preview Applet
- Replies: 22
- Views: 23033
Re: Enable Node selection in Preview Applet
Hi Eduardo,
Thank you so much for the detailed information and for the template, I think I can accomplish what I need with that.
Thanks again.
Thank you so much for the detailed information and for the template, I think I can accomplish what I need with that.
Thanks again.
- 12 Dec 2012 17:50
- Forum: Visual Results
- Topic: Enable Node selection in Preview Applet
- Replies: 22
- Views: 23033
Re: Enable Node selection in Preview Applet
Hi, i tried to implement the PreviewMouseListener, i annotated it with ServiceProvider annotation and implemented MouseResponsiveRenderer @ServiceProvider(service = MouseResponsiveRenderer.class) public class MouseResponsiveRendererImpl implements MouseResponsiveRenderer { @Override public boolean n...
- 11 Dec 2012 19:11
- Forum: Visual Results
- Topic: Enable Node selection in Preview Applet
- Replies: 22
- Views: 23033
Re: Enable Node selection in Preview Applet
Hello Eduardo, Thank you very much for your response. So if i really understand, i have to implement my own PreviewMouseListener and then send mouse events handled by the PreviewController to my mouse listener like you did in the PreviewControllerImpl class in the code below : //Avoid drag events ar...
- 10 Dec 2012 20:57
- Forum: Visual Results
- Topic: Enable Node selection in Preview Applet
- Replies: 22
- Views: 23033
Enable Node selection in Preview Applet
Hi, I am new to Gephi and i would like to use Gephi toolkit in my Java application. I am trying to use the Preview Applet in my application , however, i didn't find how to handle node selection events. I need to add interaction like to display additional informations when clicking or hovering a node...