user2042895
user2042895

Reputation: 21

Draw DAG graphs in JSF

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

Answers (1)

gokhansari
gokhansari

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

Related Questions