Reputation: 21
I need to draw a DAG graph (i.e. graph with node and directed edges) in a JSF page. Could anyone suggest me a library to do this?? I prefer a JAVA library because the graph is generated dynamically from database data, so I will implements a Bean to design the graph and after show it in a JSF page.
N.B. I use Primefaces, for notice
Upvotes: 1
Views: 2132
Reputation: 2439
You can check this primefaces component for jsf: Primefaces MindMap Component
Or check opensource jgrapht. Example Here
Or I strongly suggest to check this javascript library to generate your own graphs: rapgael js library
You can generate directed acyclic graph with both of them. Good luck!
Upvotes: 2