---
title: "Create Organizational Charts in JavaScript"
published_at: "2019-05-23T11:00:57+00:00"
modified_at: "2025-03-18T08:43:23+00:00"
url: "https://www.syncfusion.com/blogs/post/create-organizational-charts-in-javascript"
excerpt: "Org charts are graphical representations of organizational structures. Their purpose is to illustrate the relationships and relative ranks of positions within an organization. An org chart may also be referred to as an organization chart, organizational chart, or hierarchy tree..."
taxonomy_category:
  - "Chart"
  - "JavaScript"
  - "UI"
taxonomy_post_tag:
  - "diagram"
  - "JavaScript"
  - "organizational-charts"
---

# Create Organizational Charts in JavaScript

[Senthil Kumar M](https://www.syncfusion.com/blogs/author/senthilkumarm)

![Create Org Chart](https://www.syncfusion.com/blogs/wp-content/uploads/2019/05/Create-Org-Chart.jpg)


[Org charts](https://en.wikipedia.org/wiki/Organizational_chart)
 are graphical representations of organizational structures. Their purpose is to illustrate the relationships and relative ranks of positions within an organization. An org chart may also be referred to as an **organization chart**, ** organizational chart**, or ** hierarchy tree or chart**.

Are you looking for a JavaScript library to create an **org chart** with less effort and which is very effective? Then you are in the right place, because the Syncfusion [JavaScript Diagram Library](https://www.syncfusion.com/javascript-ui-controls/js-diagram)
 helps you do that with easy configuration settings. In this blog, I will walk you through the steps involved in the creation of an org chart using the Syncfusion Diagram Library.

## Getting Started with a Simple Org Chart

Let’s create a simple org chart as shown in the below image using the [Syncfusion Diagram Library](https://www.syncfusion.com/javascript-ui-controls/js-diagram)
. The Diagram control has a high-performing layout algorithm to arrange parent and children elements. It can load and lay out up to 1,000 nodes and 1,000 connectors in two to three seconds.

The Diagram control supports visualizing an org chart from the data source. This avoids having to manually feed data to individual nodes. The data source should be defined in JSON format and configured to the diagram.

![A Simple Org Chart](https://blog.syncfusion.com/wp-content/uploads/2019/05/Org-Chart.png)

- Please refer to our help [documentation](https://ej2.syncfusion.com/documentation/diagram/getting-started/?no-cache=1) to learn more about the dependent scripts and theme files required to integrate the Diagram control in a JavaScript application.
- Define the employee information as a JSON array
- Create an instance of the Diagram control.
- Configure the data to the **dataSourceSettings** property of the created diagram instance.
- In the Diagram control, the rectangular boxes shown in the screenshot represent nodes, and lines represent connectors. The text inside the rectangular box represents annotations.
- When each node is created, the **dataSourceSettings**** doBinding** method will trigger. You can use this method to configure the employee information inside the node.
- Since all the nodes have the same width and height, you can define the common formatting for all nodes through the **getNodeDefaults** method. Likewise, you can define the common formatting properties for connectors through the ** getConnectorDefaults** method.
- After configuring the data source, define **layout type** to arrange the parent and child nodes positions automatically.

The code example below includes all the previously discussed steps. The full sample is available on he inline demo [here](https://stackblitz.com/edit/1woeqw-u8dzc7)
:

```
import {data} from './datasource.js';

var items = new ej.data.DataManager(data);

var diagram = new ej.diagrams.Diagram({
    width: "1000px",
    height: "600px",
    dataSourceSettings: {
        // set the unique field from data source
        id: 'id', 
        // set the field which is used to identify the reporting person
        parentId: 'manager', 
        // define the employee data
        dataManager: items,
        doBinding: function (node, data) {
            // You will get the employee information in data argument and bind that value directly to node's built-in properties.
            node.annotations = [{ content: data.role }];
            node.style = { fill: data.color };
        }
    },
    layout: {
        // set the layout type
        type: 'OrganizationalChart'
    },
    // set the common settings for node and connector
    getNodeDefaults: nodeDefaults,
    getConnectorDefaults: connectorDefaults,
    // hide the gridlines in the diagram
    snapSettings: { constraints: ej.diagrams.SnapConstraints.None }
});
diagram.appendTo('#diagram');

function nodeDefaults(node) {
    node.annotations[0].style.color = "white";
    node.width = 120; 
    return node;
}

function connectorDefaults(connector) {
    connector.type = 'Orthogonal';
    connector.targetDecorator = { shape: 'None' };
    return connector;
}
```

## Features & Examples

### Org Chart Shape Customization

You can easily create different types of org charts shapes and visualize them with custom UI design.

The **setNodeTemplate** method allows you to define a custom template for org chart. Please refer to the below code example for details.

```
//Funtion to add the Template of the Node.
function setNodeTemplate(obj, diagram) {
    // create the stack panel
    var content = new ej.diagrams.StackPanel();
    content.id = obj.id + '_outerstack';
    content.orientation = 'Horizontal';
    content.style.strokeColor = 'gray';
    content.padding = { left: 5, right: 10, top: 5, bottom: 5 };
  
    // create the image element to map the image data from the data source
    var image = new ej.diagrams.ImageElement();
    image.id = obj.id + '_pic';
    image.width = 50; image.height = 50; image.style.strokeColor = 'none';
    image.source = obj.data.ImageUrl;
  
    // create the stack panel to append the text elements.
    var innerStack = new ej.diagrams.StackPanel();
    innerStack.style.strokeColor = 'none';
    innerStack.margin = { left: 5, right: 0, top: 0, bottom: 0 };
    innerStack.id = obj.id + '_innerstack';
  
    // create the text element to map the Name data from the data source
    var text = new ej.diagrams.TextElement();
    text.style.bold = true;
    text.id = obj.id + '_name';
    text.content = obj.data.Name;
  
    // create the text element to map the designation data from the data source
    var desigText = new ej.diagrams.TextElement();
    desigText.id = obj.id + '_desig';
    desigText.content = obj.data.Designation;
  
    // append the text elements
    innerStack.children = [text, desigText];
    
    // append the image and inner stack elements
    content.children = [image, innerStack];
    return content;
}
```

![Customized Org Chart](https://blog.syncfusion.com/wp-content/uploads/2019/05/Org-Chart-Customization.png)

*Customized Org Chart*

The full sample code is available [here:](https://stackblitz.com/edit/1woeqw-5ahyy6)

### Expand and Collapse

Use the **expandIcon** and ** collapseIcon** properties of nodes to implement the expand and collapse features of the tree-shaped org chart. The following code example illustrates this.

```
function nodeDefaults(node) {
  ….
  node.expandIcon = { shape: 'Minus' };
  node.collapseIcon = { shape: 'Plus' };
  return node;
}
```

![Expand and Collapse Org Chart](https://blog.syncfusion.com/wp-content/uploads/2019/05/Expand-and-Collapse-Org-Chart.gif)

*Expand and Collapse Org Chart*

The full sample for this feature is available [here:](https://stackblitz.com/edit/1woeqw)

### Drag-and-Drop (Editing Hierarchy Interactively)

You can easily modify the org chart interactively by dragging the child or parent nodes and dropping them at the desired locations. To enable editing of the hierarchical structure of the org chart, add the following code in the **drop** method of the Diagram control.

```
var diagram = new ej.diagrams.Diagram({
    ...    
    // trigger the drop event to update the org chart structure when drag and drop the child node.
    drop: drop
  });

function drop(args) {
    if (args.target && args.target instanceof ej.diagrams.Node) {
        var connector = diagram.getObject(args.element.inEdges[0]);
        connector.sourceID = args.target.id;
        diagram.dataBind();
        diagram.doLayout();
        // update your local data source when modifying org chart structure.
        updateDataSource(args.element, args.target);
    }
}
  
function updateDataSource(source, target) {
    var updateData = data.find(function(element) {
        return element.id === source.data.id;
    });
    if(updateData) {
      updateData.manager = target.data.id;
    }
}
```

![Drag and Drop nodes in Org Chart](https://blog.syncfusion.com/wp-content/uploads/2019/05/Drag-and-Drop-Org-Chart.gif)

*Drag and Drop nodes in Org Chart*

The full sample is available [here](https://stackblitz.com/edit/1woeqw-a5dxag)
.

### Assistants

The Diagram control supports defining assistants in the org chart. Assistants are child items that have a different relationship with the parent node. They are laid out in a dedicated part of the tree.

The layout’s **getLayoutInfo** method will be triggered when positioning each node on the layout, and it takes node and tree information as the arguments. Use this method to specify a node as an assistant node. Refer to the following code example for a demonstration.

```
var diagram = new ej.diagrams.Diagram({
    ...
    layout: {
        type: 'OrganizationalChart',
        getLayoutInfo: function (node, options) {
            // you can get the children belongs to the parent node and decide the assistants from that children.
            if (node.data.role === 'General Manager') {
                options.assistants.push(options.children[2]);
                options.children.splice(2, 1);
            }
        }
    },
    
});
```

![Assistants in Org Chart](https://blog.syncfusion.com/wp-content/uploads/2019/05/Assistants-Org-Chart.png)

*Assistants in Org Chart*

The full sample is available [here](https://stackblitz.com/edit/1woeqw-a81wbz)
.

### Orientation & Alignment

You can arrange the organizational chart with different orientations, such as top-to-bottom, left-to-right, right-to-left, and bottom-to-top as needed. Leaf-level nodes of the org chart can be aligned either horizontally or vertically. Nodes can be aligned to the left, right, or center horizontally and to the top, bottom, or middle vertically. You can customize the horizontal and vertical spacing between each level.

Please refer to the following code example to set the orientation and customize leaf-level node alignment.

```
var diagram = new ej.diagrams.Diagram({
    ...
    layout: {
      type: 'OrganizationalChart',
      // set the layout orientation
      orientation: 'TopToBottom',
      // set the spacing between each level in horizontal and vertical direction
      horizontalSpacing: 50, verticalSpacing: 50,
      getLayoutInfo: function (node, options) {
          // set the leaf-level node alignment
          if (!options.hasSubTree) {
              options.orientation = 'Horizontal';
              options.type = 'Center';
          }
      }
  
    },
    
});
```

![Orientation & Alignment in Org Chart](https://blog.syncfusion.com/wp-content/uploads/2019/05/Orientation-Alignment-Org-Chart.png)

*Orientation & Alignment – Org Chart*

The full sample is available [here](https://stackblitz.com/edit/1woeqw-o8njkk)
.

### Zooming and Panning

Viewing a large org chart on a small screen can be quite difficult. Zooming and panning support helps to provide a better view of the chart.

Use Ctrl + mouse wheel operation to zoom in and out on the diagram. To activate zooming and panning support in the Diagram control, use the following code example.

```
var diagram = new ej.diagrams.Diagram({
    // enable the pan tool
    tool: ej.diagrams.DiagramTools.ZoomPan
});
```

![Zoom and pan org chart](https://blog.syncfusion.com/wp-content/uploads/2019/05/zoom-and-pan.gif)

*Zoom and pan org chart*

The full sample is available [here](https://stackblitz.com/edit/a2qdyg)
.

### Exporting

You can easily export the diagram to different image formats such as PNG, JPEG, BMP, and SVG.

Please refer to the below code example and demo link to explore this feature.

```
diagram.exportDiagram({format: 'PNG', fileName: 'OrgChart'});
```

The full sample is available [here](https://stackblitz.com/edit/1woeqw-zcjbss)
.

### Lazy Loading

Loading very large data sets in a diagram can be time-consuming. Use the lazy loading UI virtualization technique to load only the objects that lay on the viewport. This allows the diagram to load and display large data within a second.

To enable the virtualization feature, please use the following code example.

```
var diagram = new ej.diagrams.Diagram({
    // enable virtualization
    constraints: ej.diagrams.DiagramConstraints.Default | ej.diagrams.DiagramConstraints.Virtualization,
});
diagram.appendTo('#diagram');
```

The full sample is available [here](https://stackblitz.com/edit/hnqutl)
.  
 [https://www.syncfusion.com/downloads/essential-js2](https://www.syncfusion.com/downloads/essential-js2)

## Conclusion

In this blog post, we have seen how to create and customize organizational charts using the Syncfusion [JavaScript Diagram Library](https://www.syncfusion.com/javascript-ui-controls/js-diagram)
. If you would like to try the Diagram Library, you can download our [free trial](https://www.syncfusion.com/downloads/essential-js2)
. You can visit the Diagram Library source in [GitHub](https://github.com/syncfusion/ej2-javascript-ui-controls)
and check our [live demo](https://ej2.syncfusion.com/demos/#/material/diagram/default-functionalities.html)
 and [documentation](https://ej2.syncfusion.com/documentation/diagram/getting-started/?no-cache=1)
for detailed explanations.

If you have any questions, please let us know in the comments section below. You can also contact us through our [support forum](https://www.syncfusion.com/forums)
, [support portal](https://support.syncfusion.com/)
, or [feedback portal](https://www.syncfusion.com/feedback/javascript)
. We are always happy to assist you!

## Related blogs

- [Easily Craft Interactive Digital Logic Circuit Diagrams in JavaScript](https://www.syncfusion.com/blogs/post/digital-logic-circuit-javascript.aspx)
- [Using Microsoft Project Files with Syncfusion JavaScript Gantt Chart: A Beginner’s Guide](https://www.syncfusion.com/blogs/post/microsoft-project-files-in-javascript-gantt-chart.aspx)
- [Debugging Like a Pro: 10 Tips for Effective JavaScript Troubleshooting](https://www.syncfusion.com/blogs/post/debugging-10-tips-javascript.aspx)
- [Responsive Web Design Evolved: Introducing CSS Container Queries](https://www.syncfusion.com/blogs/post/css-container-queries.aspx)
