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?
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.