Using Google Visualization Organization Chart with Rails

I intend to embed an Organization Chart in my application, and the best resource I found to display was Google Organization Chart .

I am using awesome_nested_set to support the tree structure in the database, and now I need to display the tree as an organization chart, for which I thought I could use the Google Org chart. It can be done? If so, any advice or resources will be helpful. Thank you

+7
source share
2 answers

So, I found this resource. It is called GoogleVisualR .

It makes the visualization of the Google org chart very simple, what else, you are writing Ruby code, not a line in Javascript (unless, of course, you need to configure it). Nice!

+6
source

I worked on the Org Chart, where I get user profiles from the list associated with the manager field. I used KineticJS to create a dynamic org chart, and it works fine right now, but I would like to know what others think about it

0
source

All Articles