New export option in OrgChart JS in v 8.14.110
childLevels - This export option allows you to export a node along with its children(reports) on a separate page, making it easier to extract relevant sections of your organizational chart.
When set, childLevels
exports only the selected node and its immediate subordinates, ignoring deeper hierarchy levels. This is useful for:
Example Usage
chart.exportPDF({
nodeId: 5,
childLevels : 2
});
In the example above node with id 5 will be exported with his/her direct children.
Try it out and streamline your exports! For full details on how to use it, see the code this code demo