Getting started
Configuration wizard
HTML templates
JavaScript framework
Additional resources
- Video: Introducing Plumsail Org Chart
- Data caching
- SharePoint Server 2019/SE (On-Premises) resources
- Installation for SharePoint 2019 / SE
- Quick configuration
- How to add Org Chart to Microsoft Teams tabs
- Generate organization structure report
- Layout
- Filtration
- JavaScript custom code
- General settings
- Display assistants
- Display dotted-line managers for Org Chart
- Display vacancies
- Customize box HTML template and CSS styles
- HTML templating syntax
- Change Org Chart skin
- Create org chart with two root managers
- Order employees boxes using custom field
- How Org Chart pulls data from AD On-Premises
- Drill down to current user by default
- Drill down to specific box using URL parameter
- Include and use fields from additional list
- Use advanced Org Chart navigation
- How to open Org Chart in full-screen mode on load
- Support of search in a list with more than 5000 items
- Exclude disabled users in On-Premises
- Configuring profiles sync in On-Premises
- Make sure that SharePoint has enough data
- Exporting properties to a directory service
General
- Version history
- Licensing details
- Data protection and security
- Custom code security measures
- Billing and subscription management
Printing & Reports
- Printing organizational structure
- Generate multi-page PDF report
- Export to CSV and analyze in Excel
- Custom styles for printed Org Chart
Microsoft Teams
Display different types of employees
Filter and order boxes
- Create and manage filtered views
- Order employees boxes using a custom field
- Group employees boxes using a custom field
Customize boxes and styles
- Format boxes conditionally
- Customize box HTML template and CSS styles
- Display awards and conditionally format Org Chart
- Create an Org Chart with two root managers
- Change Org Chart theme
- Localize Org Chart
Show specific user on load
- Drill down to specific box using URL parameter
- Drill down to current user by default
- Drill down to manager of user from URL by default
Manage web part size and scale
- Open Org Chart in full-screen mode on load
- Make Org Chart use full page width
- Automatically scale boxes to fit visible area
Other examples
- How to customize Org Chart
- How to use advanced Org Chart navigation
- Use tenant properties to disable Org Chart features
- Include and use fields from additional list in Org Chart
- Support of search in a list with more than 5000 items for Org Chart
- Show Org Chart based on a list data source for anonymous users
- How to check if a user has Tenant Administrator permissions
Create org chart with two root managers (SharePoint Server 2019/SE)
This article describes how to create an org chart with two root managers in Plumsail Org Chart for SharePoint Server 2019/SE.
You may use the following trick if you need to build a chart with two or more root nodes, for example, if you have multiple CEOs at the top of the hierarchy.
To do that you need to add a fake manager at the top of your chart and then hide it using Custom JavaScript and CSS:
Add the following script to the Custom JavaScipt tab to hide the fake manager:
renderer.onBoxRendered(function(event, box, itemData){
if (itemData["Title"].contains("David Navarro")) {
box.$elem.hide();
$("div.poch-group").addClass("hiddenElements");
$("div.poch-node").prepend('<div class="maskingBlock"></div>');
}
});
Then, add the following styles to the Custom CSS tab for covering the lines left from the hidden box. The styles differ depending on the layout you use. Also, you may need to change the background color or other properties for adjusting the masking block to a selected skin.
Top to bottom (any)
.hiddenElements {
overflow: hidden;
margin: 0 !important
}
.maskingBlock {
display: block;
width: 100%;
height: 50px;
background-color: white;
position: absolute;
left: 0;
top: 0
}
Left to right
.hiddenElements {
overflow: hidden;
margin: 0 !important
}
.maskingBlock {
display: block;
width: 100%;
height: 70px;
background-color: white;
position: absolute;
left: 0;
top: 0
}
Bottom to top
.hiddenElements {
overflow: hidden;
margin: 0 !important
}
.maskingBlock {
display: block;
width: 100%;
height: 60px;
background-color: white;
position: absolute;
left: 0;
bottom: 0;
z-index: 20
}
That is it. Now you have a chart with multiple managers at the top:
Conclusion
Now you know how to use Plumsail Org Chart to create org chart with two root managers. If you didn’t install it yet, download it and follow the installation instruction for your version of SharePoint in the documentation. It is quite easy to get started.