Getting started
Configuration wizard
HTML templates
JavaScript framework
Additional resources
General
Printing & Reports
Microsoft Teams
Display different types of employees
Filter and order boxes
Customize boxes and styles
Show specific user on load
Manage web part size and scale
Other examples
In this tip, I will describe how to open Org Chart in full-screen mode on load.
You just need to open the configuration wizard (click on gears at the top right corner of the web part and choose Settings) and switch to Custom JavaScript step:
Add the code below into code editor:
renderer.onInitialLoadingFinished(function(event){
renderer.enableDisableFullScreen();
});
Then finish the wizard. This script will enable a full-screen mode for your OrgChart when it loads.