I have a program that I wrote in Java takes in a set of actions and prints out a graph after every action. Another way to look at it is that the program prints out the output of the graph at every time-step. I need to display this dynamic graph visually and I have been considering some softwares like gephi. I would like to know that what would be the best way to go about doing it and it seems like gephi does not support this feature. Should i build a java applet and if so does java provide any libraries.
I want to display the entire graph with nodes and edges between them. The edges will display the actions between the nodes and each action will result in some values being changed in the nodes. The nodes will display the value being changed and edges will be marked with the action.
Thanks.