Hi Ramu, This may not be ideal, but I've been using the dot graphing language to generate simple directed graph images and USEMAPs which can assign an arbitrary url link to each node. I'm using this in a prototype, not in a "production" system.
See http://www.graphviz.org/ for information on the dot language, once you have dumped your connection information to the dot language you can use a command like the following dot -Tcmapx -o base.map -Tgif -o base.gif base.dot to build the image and the usemap which should be included in your view using something like the following. <%= File.read("base.map") %> <%= image_tag("base.gif", :usemap => '#map_name') %> I'd be interested to hear better solutions for this problem. Best -- Eric "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> writes: > Hi, > > I am working on the social networking application where I have to > show all my connections in graph view uptoi some k levels of graph. I > am almost done with the back end code and I am struggling to display > the connections in the browser. Is there any library for the UI > library which can simplify my task. Please let me know if you know > some thing. > > Thanks, > Ramu > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---

