RE: Organization Chart in Liferay DXP

sree p, modified 5 Years ago. Junior Member Posts: 91 Join Date: 10/3/19 Recent Posts
Hello, I am using Liferay DXP seems there is no out of box component for Org chart , can you please provide quick and easy solution how to build dynamic organization chart in liferay DXP instead of following online examples 9html, css/js frame work).
thumbnail
Christoph Rabel, modified 5 Years ago. Liferay Legend Posts: 1555 Join Date: 9/24/09 Recent Posts
Well, you probably need to develop it.
If I had to do that, I would select one library or example I like and then I would use OrganizationLocalService to fetch the organization I want to show. Then recurse through the children and write the necessary html/js structure (whatever the library/example requires).
I did that once for users (users (or to be more precise, their group, can have "parents" too. I had an import job that connected the users and when clicking a user, I showed his place in a hierarchy using a simple css tree.
https://codepen.io/Pestov/pen/BLpgm
sree p, modified 5 Years ago. Junior Member Posts: 91 Join Date: 10/3/19 Recent Posts
Hi Chrish, can you please provide details steps how to implement that and give some examples too.