Displaying More Than 100 Direct Reports in Plumsail Org Chart

Hi everyone,

I'm using Plumsail Org Chart with Azure AD as the data source, and I’ve run into an issue where not all direct reports are shown under a manager who has more than 100 subordinates.

Here’s what I’ve tried so far:

  • I looked through the Design configuration, but I couldn’t find any setting like “Max number of direct subordinates”.

  • I attempted to override the limit using JavaScript in the configuration panel with:

    api.config.maxNumberOfChildNodes = 200; and also
    renderer.config.maxNumberOfChildNodes = 200; But neither had any effect

Is there a hard limit of 100 direct reports? Or is there another way to configure the chart to show all employees under a manager?

Thanks in advance

Hi @dan!

I suggest including the following configuration to resolve the issue:

api.config.itemsPerNodeLimit = 200;

The default value is set to 100, which is likely what's causing your chart to be incomplete. By increasing the limit, you should be able to display all your employees.

Give it a go and let me know your results.

Best regards,
Milagros
Plumsail team

Hi Milagros,

thank you for your answer. I tried it but it didn`t work. I also tested it on an second OrgChart Webpart without any other configurations.

Do you have any other ideas?

Thx

Dan

Hi @dan

My apologies, I missed an important detail earlier: the configuration I shared was for the compact layout.

Could you please tell me which layout you are currently using?

Best regards,
Milagros
Plumsail team

we use the Layout “Top to bottom with grouping of leaf boxes”.

Best regards,
Dan

Hi @dan,

The team suggested applying this specific configuration outside of any function in the code:

Make sure to save all changes and then clear your browser cache before refreshing the Org Chart. The changes should be visible after a while.

Best regards,
Milagros
Plumsail team