Automatic layout in React Diagram component
30 Jan 202324 minutes to read
Diagram provides support to auto-arrange the nodes in the diagram area that is referred as Layout
. It includes the following layout modes:
Layout modes
- Hierarchical layout
- Organization chart
- Radial tree
- Symmetric layout
- Mind Map layout
- Complex hierarchical tree layout
Hierarchical layout
The hierarchical tree layout arranges nodes in a tree-like structure, where the nodes in the hierarchical layout may have multiple parents. There is no need to specify the layout root. To arrange the nodes in a hierarchical structure, specify the layout type
as hierarchical tree. The following example shows how to arrange the nodes in a hierarchical structure.
Note: If you want to use hierarchical tree layout in diagram, you need to inject HierarchicalTree in the diagram.
The following example shows how to arrange the nodes in a hierarchical structure.
import * as React from "react";
import * as ReactDOM from "react-dom";
import { DiagramComponent, Inject, HierarchicalTree, DataBinding, } from "@syncfusion/ej2-react-diagrams";
import { DataManager, Query } from "@syncfusion/ej2-data";
//Initializes data source
let data = [
{
Name: "Steve-Ceo",
},
{
Name: "Kevin-Manager",
ReportingPerson: "Steve-Ceo",
},
{
Name: "Peter-Manager",
ReportingPerson: "Steve-Ceo",
},
{
Name: "John- Manager",
ReportingPerson: "Peter-Manager",
},
{
Name: "Mary-CSE ",
ReportingPerson: "Peter-Manager",
},
{
Name: "Jim-CSE ",
ReportingPerson: "Kevin-Manager",
},
{
Name: "Martin-CSE",
ReportingPerson: "Kevin-Manager",
},
];
let items = new DataManager(data, new Query().take(7));
function App() {
return (<div className="control-pane">
<div className="control-section">
<div className="content-wrapper" style={{ width: "100%" }}>
<DiagramComponent id="container" width={"100%"} height={"550px"}
//Uses layout to auto-arrange nodes on the diagram page
layout={{
//Sets layout type
type: "HierarchicalTree",
}}
//Configures data source for diagram
dataSourceSettings={{
id: "Name",
parentId: "ReportingPerson",
dataManager: items,
}}
//Sets the default properties for nodes
getNodeDefaults={(obj) => {
obj.shape = {
type: "Text",
content: obj.data.Name,
};
obj.style = {
fill: "None",
strokeColor: "none",
strokeWidth: 2,
bold: true,
color: "white",
};
obj.borderColor = "white";
obj.width = 100;
obj.height = 40;
obj.backgroundColor = "#6BA5D7";
obj.borderWidth = 1;
obj.shape.margin = {
left: 5,
right: 5,
top: 5,
bottom: 5,
};
return obj;
}}
//Sets the default properties for and connectors
getConnectorDefaults={(connector, diagram) => {
connector.style = {
strokeColor: "#6BA5D7",
strokeWidth: 2,
};
connector.targetDecorator.style.fill = "#6BA5D7";
connector.targetDecorator.style.strokeColor = "#6BA5D7";
connector.type = "Orthogonal";
return connector;
}}>
<Inject services={[DataBinding, HierarchicalTree]}/>
</DiagramComponent>
</div>
</div>
</div>);
}
const root = ReactDOM.createRoot(document.getElementById("diagram"));
root.render(<App />);
import * as React from "react";
import * as ReactDOM from "react-dom";
import {
Diagram,
DiagramComponent,
Inject,
ConnectorModel,
NodeModel,
DiagramConstraints,
HierarchicalTree,
TextModel,
DataBinding,
} from "@syncfusion/ej2-react-diagrams";
import { DataManager, Query } from "@syncfusion/ej2-data";
//Initializes data source
let data: object[] = [
{
Name: "Steve-Ceo",
},
{
Name: "Kevin-Manager",
ReportingPerson: "Steve-Ceo",
},
{
Name: "Peter-Manager",
ReportingPerson: "Steve-Ceo",
},
{
Name: "John- Manager",
ReportingPerson: "Peter-Manager",
},
{
Name: "Mary-CSE ",
ReportingPerson: "Peter-Manager",
},
{
Name: "Jim-CSE ",
ReportingPerson: "Kevin-Manager",
},
{
Name: "Martin-CSE",
ReportingPerson: "Kevin-Manager",
},
];
let items: DataManager = new DataManager(data as JSON[], new Query().take(7));
function App() {
return (
<div className="control-pane">
<div className="control-section">
<div className="content-wrapper" style={{ width: "100%" }}>
<DiagramComponent
id="container"
width={"100%"}
height={"550px"}
//Uses layout to auto-arrange nodes on the diagram page
layout={{
//Sets layout type
type: "HierarchicalTree",
}}
//Configures data source for diagram
dataSourceSettings={{
id: "Name",
parentId: "ReportingPerson",
dataManager: items,
}}
//Sets the default properties for nodes
getNodeDefaults={(obj) => {
obj.shape = {
type: "Text",
content: obj.data.Name,
};
obj.style = {
fill: "None",
strokeColor: "none",
strokeWidth: 2,
bold: true,
color: "white",
};
obj.borderColor = "white";
obj.width = 100;
obj.height = 40;
obj.backgroundColor = "#6BA5D7";
obj.borderWidth = 1;
obj.shape.margin = {
left: 5,
right: 5,
top: 5,
bottom: 5,
};
return obj;
}}
//Sets the default properties for and connectors
getConnectorDefaults={(connector, diagram) => {
connector.style = {
strokeColor: "#6BA5D7",
strokeWidth: 2,
};
connector.targetDecorator.style.fill = "#6BA5D7";
connector.targetDecorator.style.strokeColor = "#6BA5D7";
connector.type = "Orthogonal";
return connector;
}}
>
<Inject services={[DataBinding, HierarchicalTree]} />
</DiagramComponent>
</div>
</div>
</div>
);
}
const root = ReactDOM.createRoot(document.getElementById("diagram"));
root.render(<App />);
Radial tree layout
The radial tree layout arranges nodes on a virtual concentric circle around a root node. Sub-trees formed by the branching of child nodes are located radially around the child nodes. This arrangement result in an ever-expanding concentric arrangement with radial proximity to the root node indicating the node level in the hierarchy. The layout root
property can be used to define the root node of the layout. When no root node is set, the algorithm automatically considers one of the diagram nodes as the root node.
To arrange nodes in a radial tree structure, set the type
of the layout as RadialTree
. The following code illustrates how to arrange the nodes in a radial tree structure.
Note: If you want to use radial tree layout in diagram, you need to inject DataBinding and RadialTree in the diagram.
import * as React from "react";
import * as ReactDOM from "react-dom";
import { DiagramComponent, Inject, DataBinding, RadialTree, } from "@syncfusion/ej2-react-diagrams";
import { DataManager, Query } from "@syncfusion/ej2-data";
//Initializes data source
let data = [
{
Id: 1,
Name: "Ana Trujillo",
Designation: "Project Manager",
RatingColor: "#68C2DE",
},
{
Id: 2,
Name: "Lino Rodri",
Designation: "Project Manager",
RatingColor: "#68C2DE",
ReportingPerson: 1,
},
{
Id: 3,
Name: "Philip Cramer",
Designation: "Project Manager",
RatingColor: "#68C2DE",
ReportingPerson: 1,
},
{
Id: 4,
Name: "Pedro Afonso",
Designation: "Project Manager",
RatingColor: "#68C2DE",
ReportingPerson: 1,
},
{
Id: 5,
Name: "Anto Moreno",
Designation: "Project Lead",
RatingColor: "#93B85A",
ReportingPerson: 1,
},
{
Id: 6,
Name: "Elizabeth Roel",
Designation: "Project Lead",
RatingColor: "#93B85A",
ReportingPerson: 1,
},
{
Id: 7,
Name: "Aria Cruz",
Designation: "Project Lead",
RatingColor: "#93B85A",
ReportingPerson: 1,
},
{
Id: 8,
Name: "Eduardo Roel",
Designation: "Project Lead",
RatingColor: "#93B85A",
ReportingPerson: 1,
},
{
Id: 9,
Name: "Howard Snyd",
Designation: "Project Lead",
RatingColor: "#68C2DE",
ReportingPerson: 1,
},
{
Id: 10,
Name: "Daniel Tonini",
Designation: "Project Lead",
RatingColor: "#93B85A",
ReportingPerson: 1,
},
{
Id: 11,
Name: "Nardo Batista",
Designation: "Project Lead",
RatingColor: "#68C2DE",
ReportingPerson: 1,
},
];
let items = new DataManager(data, new Query().take(5));
function App() {
return (<DiagramComponent id="container" width={"100%"} height={"590px"} snapSettings={{
constraints: 0,
}}
//Uses layout to auto-arrange nodes on the diagram page
layout={{
//set the type as Radial tree
type: "RadialTree",
root: "parent",
}}
//Configures data source for diagram
dataSourceSettings={{
id: "Id",
parentId: "ReportingPerson",
dataManager: items,
}}
//Sets the default properties for nodes and connectors
getNodeDefaults={(obj, diagram) => {
obj.height = 15;
obj.width = 15;
obj.borderWidth = 1;
obj.style = {
fill: "#6BA5D7",
strokeWidth: 2,
strokeColor: "#6BA5D7",
};
return obj;
}} getConnectorDefaults={(connector, diagram) => {
connector.style = {
strokeColor: "#6BA5D7",
strokeWidth: 2,
};
connector.targetDecorator.style.fill = "#6BA5D7";
connector.targetDecorator.style.strokeColor = "#6BA5D7";
connector.targetDecorator.shape = "None";
connector.type = "Straight";
return connector;
}}>
<Inject services={[DataBinding, RadialTree]}/>
</DiagramComponent>);
}
const root = ReactDOM.createRoot(document.getElementById("diagram"));
root.render(<App />);
import * as React from "react";
import * as ReactDOM from "react-dom";
import {
Diagram,
DiagramComponent,
Inject,
ConnectorModel,
Node,
NodeModel,
Container,
TextElement,
StackPanel,
ImageElement,
DataBinding,
RadialTree,
TreeInfo,
DiagramTools,
} from "@syncfusion/ej2-react-diagrams";
import { DataManager, Query } from "@syncfusion/ej2-data";
//Initializes data source
let data: object = [
{
Id: 1,
Name: "Ana Trujillo",
Designation: "Project Manager",
RatingColor: "#68C2DE",
},
{
Id: 2,
Name: "Lino Rodri",
Designation: "Project Manager",
RatingColor: "#68C2DE",
ReportingPerson: 1,
},
{
Id: 3,
Name: "Philip Cramer",
Designation: "Project Manager",
RatingColor: "#68C2DE",
ReportingPerson: 1,
},
{
Id: 4,
Name: "Pedro Afonso",
Designation: "Project Manager",
RatingColor: "#68C2DE",
ReportingPerson: 1,
},
{
Id: 5,
Name: "Anto Moreno",
Designation: "Project Lead",
RatingColor: "#93B85A",
ReportingPerson: 1,
},
{
Id: 6,
Name: "Elizabeth Roel",
Designation: "Project Lead",
RatingColor: "#93B85A",
ReportingPerson: 1,
},
{
Id: 7,
Name: "Aria Cruz",
Designation: "Project Lead",
RatingColor: "#93B85A",
ReportingPerson: 1,
},
{
Id: 8,
Name: "Eduardo Roel",
Designation: "Project Lead",
RatingColor: "#93B85A",
ReportingPerson: 1,
},
{
Id: 9,
Name: "Howard Snyd",
Designation: "Project Lead",
RatingColor: "#68C2DE",
ReportingPerson: 1,
},
{
Id: 10,
Name: "Daniel Tonini",
Designation: "Project Lead",
RatingColor: "#93B85A",
ReportingPerson: 1,
},
{
Id: 11,
Name: "Nardo Batista",
Designation: "Project Lead",
RatingColor: "#68C2DE",
ReportingPerson: 1,
},
];
let items: DataManager = new DataManager(data as JSON[], new Query().take(5));
function App() {
return (
<DiagramComponent
id="container"
width={"100%"}
height={"590px"}
snapSettings={{
constraints: 0,
}}
//Uses layout to auto-arrange nodes on the diagram page
layout={{
//set the type as Radial tree
type: "RadialTree",
root: "parent",
}}
//Configures data source for diagram
dataSourceSettings={{
id: "Id",
parentId: "ReportingPerson",
dataManager: items,
}}
//Sets the default properties for nodes and connectors
getNodeDefaults={(obj, diagram) => {
obj.height = 15;
obj.width = 15;
obj.borderWidth = 1;
obj.style = {
fill: "#6BA5D7",
strokeWidth: 2,
strokeColor: "#6BA5D7",
};
return obj;
}}
getConnectorDefaults={(connector, diagram) => {
connector.style = {
strokeColor: "#6BA5D7",
strokeWidth: 2,
};
connector.targetDecorator.style.fill = "#6BA5D7";
connector.targetDecorator.style.strokeColor = "#6BA5D7";
connector.targetDecorator.shape = "None";
connector.type = "Straight";
return connector;
}}
>
<Inject services={[DataBinding, RadialTree]} />
</DiagramComponent>
);
}
const root = ReactDOM.createRoot(document.getElementById("diagram"));
root.render(<App />);
Organizational Chart
An organizational chart is a diagram that displays the structure of an organization and relationships. To create an organizational chart, the type
of layout should be set as an OrganizationalChart
. The following code example illustrates how to create an organizational chart.
import * as React from "react";
import * as ReactDOM from "react-dom";
import { DiagramComponent, Inject, DataBinding, HierarchicalTree, } from "@syncfusion/ej2-react-diagrams";
import { DataManager, Query } from "@syncfusion/ej2-data";
//Initializes data source
let data = [
{
Id: "parent",
Role: "Project Management",
},
{
Id: 1,
Role: "R&D Team",
Team: "parent",
},
{
Id: 3,
Role: "Philosophy",
Team: "1",
},
{
Id: 4,
Role: "Organization",
Team: "1",
},
{
Id: 5,
Role: "Technology",
Team: "1",
},
{
Id: 7,
Role: "Funding",
Team: "1",
},
{
Id: 8,
Role: "Resource Allocation",
Team: "1",
},
{
Id: 9,
Role: "Targeting",
Team: "1",
},
{
Id: 11,
Role: "Evaluation",
Team: "1",
},
{
Id: 156,
Role: "HR Team",
Team: "parent",
},
{
Id: 13,
Role: "Recruitment",
Team: "156",
},
{
Id: 113,
Role: "Training",
Team: "12",
},
{
Id: 112,
Role: "Employee Relation",
Team: "156",
},
{
Id: 14,
Role: "Record Keeping",
Team: "12",
},
{
Id: 15,
Role: "Compensations & Benefits",
Team: "12",
},
{
Id: 16,
Role: "Compliances",
Team: "12",
},
{
Id: 17,
Role: "Production & Sales Team",
Team: "parent",
},
{
Id: 119,
Role: "Design",
Team: "17",
},
{
Id: 19,
Role: "Operation",
Team: "17",
},
{
Id: 20,
Role: "Support",
Team: "17",
},
{
Id: 21,
Role: "Quality Assurance",
Team: "17",
},
{
Id: 23,
Role: "Customer Interaction",
Team: "17",
},
{
Id: 24,
Role: "Support and Maintenance",
Team: "17",
},
{
Id: 25,
Role: "Task Coordination",
Team: "17",
},
];
let items = new DataManager(data, new Query().take(5));
function App() {
return (<DiagramComponent id="container" width={"100%"} height={"550px"}
//Uses layout to auto-arrange nodes on the diagram page
layout={{
//set the type as Organizational Chart
type: "OrganizationalChart",
enableAnimation: true,
margin: { top: 20 },
horizontalSpacing: 25,
verticalSpacing: 30,
horizontalAlignment: "Left",
verticalAlignment: "Top",
}}
//Configures data source for diagram
dataSourceSettings={{
id: "Id",
parentId: "Team",
dataManager: items,
}}
//Sets the default properties for nodes and connectors
getNodeDefaults={(obj) => {
obj.shape = {
type: "Text",
content: obj.data.Role,
};
obj.style = {
fill: "None",
strokeColor: "none",
strokeWidth: 2,
bold: true,
color: "white",
};
obj.borderColor = "white";
obj.backgroundColor = "#6BA5D7";
obj.borderWidth = 1;
obj.width = 75;
obj.height = 40;
obj.shape.margin = {
left: 5,
right: 5,
top: 5,
bottom: 5,
};
return obj;
}} getConnectorDefaults={(connector, diagram) => {
connector.style = {
strokeColor: "#6BA5D7",
strokeWidth: 2,
};
connector.targetDecorator.style.fill = "#6BA5D7";
connector.targetDecorator.style.strokeColor = "#6BA5D7";
connector.type = "Orthogonal";
return connector;
}}>
<Inject services={[DataBinding, HierarchicalTree]}/>
</DiagramComponent>);
}
const root = ReactDOM.createRoot(document.getElementById("diagram"));
root.render(<App />);
import * as React from "react";
import * as ReactDOM from "react-dom";
import {
Diagram,
DiagramComponent,
Inject,
ConnectorModel,
Node,
NodeModel,
Container,
TextElement,
StackPanel,
ImageElement,
DataBinding,
TextModel,
HierarchicalTree,
TreeInfo,
DiagramTools,
} from "@syncfusion/ej2-react-diagrams";
import { DataManager, Query } from "@syncfusion/ej2-data";
//Initializes data source
let data: object[] = [
{
Id: "parent",
Role: "Project Management",
},
{
Id: 1,
Role: "R&D Team",
Team: "parent",
},
{
Id: 3,
Role: "Philosophy",
Team: "1",
},
{
Id: 4,
Role: "Organization",
Team: "1",
},
{
Id: 5,
Role: "Technology",
Team: "1",
},
{
Id: 7,
Role: "Funding",
Team: "1",
},
{
Id: 8,
Role: "Resource Allocation",
Team: "1",
},
{
Id: 9,
Role: "Targeting",
Team: "1",
},
{
Id: 11,
Role: "Evaluation",
Team: "1",
},
{
Id: 156,
Role: "HR Team",
Team: "parent",
},
{
Id: 13,
Role: "Recruitment",
Team: "156",
},
{
Id: 113,
Role: "Training",
Team: "12",
},
{
Id: 112,
Role: "Employee Relation",
Team: "156",
},
{
Id: 14,
Role: "Record Keeping",
Team: "12",
},
{
Id: 15,
Role: "Compensations & Benefits",
Team: "12",
},
{
Id: 16,
Role: "Compliances",
Team: "12",
},
{
Id: 17,
Role: "Production & Sales Team",
Team: "parent",
},
{
Id: 119,
Role: "Design",
Team: "17",
},
{
Id: 19,
Role: "Operation",
Team: "17",
},
{
Id: 20,
Role: "Support",
Team: "17",
},
{
Id: 21,
Role: "Quality Assurance",
Team: "17",
},
{
Id: 23,
Role: "Customer Interaction",
Team: "17",
},
{
Id: 24,
Role: "Support and Maintenance",
Team: "17",
},
{
Id: 25,
Role: "Task Coordination",
Team: "17",
},
];
let items: DataManager = new DataManager(data as JSON[], new Query().take(5));
function App() {
return (
<DiagramComponent
id="container"
width={"100%"}
height={"550px"}
//Uses layout to auto-arrange nodes on the diagram page
layout={{
//set the type as Organizational Chart
type: "OrganizationalChart",
enableAnimation: true,
margin: { top: 20 },
horizontalSpacing: 25,
verticalSpacing: 30,
horizontalAlignment: "Left",
verticalAlignment: "Top",
}}
//Configures data source for diagram
dataSourceSettings={{
id: "Id",
parentId: "Team",
dataManager: items,
}}
//Sets the default properties for nodes and connectors
getNodeDefaults={(obj: NodeModel) => {
obj.shape = {
type: "Text",
content: (
obj.data as {
Role: "string";
}
).Role,
};
obj.style = {
fill: "None",
strokeColor: "none",
strokeWidth: 2,
bold: true,
color: "white",
};
obj.borderColor = "white";
obj.backgroundColor = "#6BA5D7";
obj.borderWidth = 1;
obj.width = 75;
obj.height = 40;
(obj.shape as TextModel).margin = {
left: 5,
right: 5,
top: 5,
bottom: 5,
};
return obj;
}}
getConnectorDefaults={(connector: ConnectorModel, diagram: Diagram) => {
connector.style = {
strokeColor: "#6BA5D7",
strokeWidth: 2,
};
connector.targetDecorator.style.fill = "#6BA5D7";
connector.targetDecorator.style.strokeColor = "#6BA5D7";
connector.type = "Orthogonal";
return connector;
}}
>
<Inject services={[DataBinding, HierarchicalTree]} />
</DiagramComponent>
);
}
const root = ReactDOM.createRoot(document.getElementById("diagram"));
root.render(<App />);
Organizational chart layout starts parsing from root and iterate through all its child elements. The getLayoutInfo
method provides necessary information of a node’s children and the way to arrange (direction, orientation, offsets, etc.) them. The arrangements can be customized by overriding this function as explained.
GetLayoutInfo
Set chart orientations, chart types, and offset to be left between parent and child nodes by overriding the method, diagram.layout.getLayoutInfo
. The getLayoutInfo
method is called to configure every subtree of the organizational chart. It takes the following arguments.
* node: Parent node to that options are to be customized.
* options: Object to set the customizable properties.
import * as React from "react";
import * as ReactDOM from "react-dom";
import { DiagramComponent, Inject, DataBinding, HierarchicalTree, SnapConstraints, } from "@syncfusion/ej2-react-diagrams";
import { DataManager, Query } from "@syncfusion/ej2-data";
//Initializes data source
let data = [
{
Id: 1,
Role: "General Manager",
},
{
Id: 2,
Role: "Assistant Manager",
Team: 1,
},
{
Id: 3,
Role: "Human Resource Manager",
Team: 1,
},
{
Id: 4,
Role: "Design Manager",
Team: 1,
},
{
Id: 5,
Role: "Operation Manager",
Team: 1,
},
{
Id: 6,
Role: "Marketing Manager",
Team: 1,
},
];
let items = new DataManager(data, new Query().take(7));
function App() {
return (<DiagramComponent id="container" width={"100%"} height={"530px"} snapSettings={{
constraints: SnapConstraints.None,
}}
//Uses layout to auto-arrange nodes on the diagram page
layout={{
//Sets layout type
type: "OrganizationalChart",
getLayoutInfo: (node, options) => {
if (!options.hasSubTree) {
options.type = "Center";
options.orientation = "Horizontal";
}
},
}}
//Configures data source for diagram
dataSourceSettings={{
id: "Id",
parentId: "Team",
dataManager: items,
}}
//Sets the default properties for nodes and connectors
getNodeDefaults={(obj, diagram) => {
obj.width = 150;
obj.height = 50;
obj.style.fill = "#6BA5D7";
obj.annotations = [
{
content: obj.data["Role"],
style: {
color: "white",
},
},
];
return obj;
}} getConnectorDefaults={(connector, diagram) => {
connector.style = {
strokeColor: "#6BA5D7",
strokeWidth: 2,
};
connector.targetDecorator.style.fill = "#6BA5D7";
connector.targetDecorator.style.strokeColor = "#6BA5D7";
connector.targetDecorator.shape = "None";
connector.targetDecorator.shape = "None";
connector.type = "Orthogonal";
return connector;
}}>
<Inject services={[DataBinding, HierarchicalTree]}/>
</DiagramComponent>);
}
const root = ReactDOM.createRoot(document.getElementById("diagram"));
root.render(<App />);
import * as React from "react";
import * as ReactDOM from "react-dom";
import {
Diagram,
DiagramComponent,
Inject,
ConnectorModel,
Node,
NodeModel,
DataBinding,
HierarchicalTree,
SnapConstraints,
TreeInfo,
} from "@syncfusion/ej2-react-diagrams";
import { DataManager, Query } from "@syncfusion/ej2-data";
//Initializes data source
let data: object[] = [
{
Id: 1,
Role: "General Manager",
},
{
Id: 2,
Role: "Assistant Manager",
Team: 1,
},
{
Id: 3,
Role: "Human Resource Manager",
Team: 1,
},
{
Id: 4,
Role: "Design Manager",
Team: 1,
},
{
Id: 5,
Role: "Operation Manager",
Team: 1,
},
{
Id: 6,
Role: "Marketing Manager",
Team: 1,
},
];
let items: DataManager = new DataManager(data as JSON[], new Query().take(7));
function App() {
return (
<DiagramComponent
id="container"
width={"100%"}
height={"530px"}
snapSettings={{
constraints: SnapConstraints.None,
}}
//Uses layout to auto-arrange nodes on the diagram page
layout={{
//Sets layout type
type: "OrganizationalChart",
getLayoutInfo: (node: Node, options: TreeInfo) => {
if (!options.hasSubTree) {
options.type = "Center";
options.orientation = "Horizontal";
}
},
}}
//Configures data source for diagram
dataSourceSettings={{
id: "Id",
parentId: "Team",
dataManager: items,
}}
//Sets the default properties for nodes and connectors
getNodeDefaults={(obj: NodeModel, diagram: Diagram) => {
obj.width = 150;
obj.height = 50;
obj.style.fill = "#6BA5D7";
obj.annotations = [
{
content: obj.data["Role"],
style: {
color: "white",
},
},
];
return obj;
}}
getConnectorDefaults={(connector: ConnectorModel, diagram: Diagram) => {
connector.style = {
strokeColor: "#6BA5D7",
strokeWidth: 2,
};
connector.targetDecorator.style.fill = "#6BA5D7";
connector.targetDecorator.style.strokeColor = "#6BA5D7";
connector.targetDecorator.shape = "None";
connector.targetDecorator.shape = "None";
connector.type = "Orthogonal";
return connector;
}}
>
<Inject services={[DataBinding, HierarchicalTree]} />
</DiagramComponent>
);
}
const root = ReactDOM.createRoot(document.getElementById("diagram"));
root.render(<App />);
The following table illustrates the properties that “options” argument takes.
Property | Description | Default Value |
---|---|---|
options.assistants | By default, the collection is empty. When any of the child nodes have to be set as Assistant, you can remove from children collection and have to insert into assistants collection. | Empty array |
options.orientation | Gets or sets the organizational chart orientation. | SubTreeOrientation.Vertical |
options.type | Gets or sets the chart organizational chart type. | For horizontal chart orientation:SubTreeAlignments.Center and for vertical chart orientation:SubTreeAlignments.Alternate |
options.offset | Offset is the horizontal space to be left between parent and child nodes. | 20 pixels applicable only for vertical chart orientations. |
options.hasSubTree | Gets whether the node contains subtrees. | Boolean |
options.level | Gets the depth of the node from layout root. | Number |
options.enableRouting | By default, connections are routed based on the chart type and orientations. This property gets or sets whether default routing is to be enabled or disabled. | true |
options.rows | Sets the number of rows on which the child nodes will be arranged. Applicable only for balanced type horizontal tree. | Number |
The following table illustrates the different chart orientations and chart types.
Orientation | Type | Description | Example |
---|---|---|---|
Horizontal | Left | Arranges the child nodes horizontally at the left side of the parent. | ![]() |
Right | Arranges the child nodes horizontally at the right side of the parent. | ![]() |
|
Center | Arranges the children like standard tree layout orientation. | ![]() |
|
Balanced | Arranges the leaf level child nodes in multiple rows. | ![]() |
|
Vertical | Left | Arranges the children vertically at the left side of the parent. | ![]() |
Right | Arranges the children vertically at the right side of the parent. | ![]() |
|
Alternate | Arranges the children vertically at both left and right sides of the parent. | ![]() |
The following code example illustrates how to set the vertical right arrangement to the leaf level trees.
import * as React from "react";
import * as ReactDOM from "react-dom";
import {
Diagram,
DiagramComponent,
Inject,
ConnectorModel,
Node,
NodeModel,
DataBinding,
HierarchicalTree,
TreeInfo,
} from "@syncfusion/ej2-react-diagrams";
import { DataManager, Query } from "@syncfusion/ej2-data";
//Initializes data source
let data: object[] = [
{
Id: "parent",
Role: "Board",
},
{
Id: "1",
Role: "General Manager",
Manager: "parent",
},
{
Id: "2",
Role: "Human Resource Manager",
Manager: "1",
},
{
Id: "3",
Role: "Trainers",
Manager: "2",
},
{
Id: "4",
Role: "Recruiting Team",
Manager: "2",
},
{
Id: "6",
Role: "Design Manager",
Manager: "1",
},
{
Id: "7",
Role: "Design Supervisor",
Manager: "6",
},
{
Id: "8",
Role: "Development Supervisor",
Manager: "6",
},
{
Id: "9",
Role: "Drafting Supervisor",
Manager: "6",
},
{
Id: "10",
Role: "Marketing Manager",
Manager: "1",
},
{
Id: "11",
Role: "Oversea sales Manager",
Manager: "10",
},
{
Id: "12",
Role: "Petroleum Manager",
Manager: "10",
},
{
Id: "13",
Role: "Service Dept. Manager",
Manager: "10",
},
];
function App() {
return (
<DiagramComponent
id="container"
width={"100%"}
heigh={"530px"}
snapSettings={{
constraints: 0,
}}
//Uses layout to auto-arrange nodes on the diagram page
layout={{
//Sets layout type
type: "OrganizationalChart",
getLayoutInfo: (node: Node, options: TreeInfo) => {
if (node.data["Role"] === "General Manager") {
options.assistants.push(options.children[0]);
options.children.splice(0, 1);
}
if (!options.hasSubTree) {
options.type = "Right";
options.orientation = "Vertical";
}
},
}}
//Configures data source for diagram
dataSourceSettings={{
id: "Id",
parentId: "Manager",
dataManager: new DataManager(data as JSON[]),
}}
//Sets the default properties for nodes and connectors
getNodeDefaults={(obj: NodeModel, diagram: Diagram) => {
obj.width = 150;
obj.height = 50;
obj.borderColor = "white";
obj.style.fill = "#6BA5D7";
obj.borderWidth = 1;
obj.annotations = [
{
content: obj.data["Role"],
style: {
color: "white",
},
},
];
return obj;
}}
getConnectorDefaults={(connector: ConnectorModel, diagram: Diagram) => {
connector.style = {
strokeColor: "#6BA5D7",
strokeWidth: 2,
};
connector.targetDecorator.style.fill = "#6BA5D7";
connector.targetDecorator.style.strokeColor = "#6BA5D7";
connector.targetDecorator.shape = "None";
connector.type = "Orthogonal";
return connector;
}}
>
<Inject services={[DataBinding, HierarchicalTree]} />
</DiagramComponent>
);
}
const root = ReactDOM.createRoot(document.getElementById("diagram"));
root.render(<App />);
Assistant
Assistants are child item that have a different relationship with the parent node. They are laid out in a dedicated part of the tree. A node can be specified as an assistant of its parent by adding it to the assistants
property of the argument “options”.
The following code example illustrates how to add assistants to layout.
import * as React from "react";
import * as ReactDOM from "react-dom";
import { DiagramComponent, Inject, DataBinding, HierarchicalTree, } from "@syncfusion/ej2-react-diagrams";
import { DataManager, Query } from "@syncfusion/ej2-data";
//Initializes data
let data = [
{
Id: 1,
Role: "General Manager",
},
{
Id: 2,
Role: "Assistant Manager",
Team: 1,
},
{
Id: 3,
Role: "Human Resource Manager",
Team: 1,
},
{
Id: 4,
Role: "Design Manager",
Team: 1,
},
{
Id: 5,
Role: "Operation Manager",
Team: 1,
},
{
Id: 6,
Role: "Marketing Manager",
Team: 1,
},
];
let items = new DataManager(data, new Query().take(7));
function App() {
return (<DiagramComponent id="container" width={"100%"} height={"530px"} snapSettings={{
constraints: 0,
}}
//Uses layout to auto-arrange nodes on the diagram page
layout={{
//Sets layout type
type: "OrganizationalChart",
// define the getLayoutInfo
getLayoutInfo: (node, options) => {
if (node.data["Role"] === "General Manager") {
options.assistants.push(options.children[0]);
options.children.splice(0, 1);
}
if (!options.hasSubTree) {
options.type = "Center";
options.orientation = "Horizontal";
}
},
}}
//Initializes the node template.
dataSourceSettings={{
id: "Id",
parentId: "Team",
dataManager: items,
}}
//Sets the default properties for nodes and connectors
getNodeDefaults={(obj, diagram) => {
obj.width = 150;
obj.height = 50;
obj.borderColor = "white";
obj.style.fill = "#6BA5D7";
obj.borderWidth = 1;
obj.annotations = [
{
content: obj.data["Role"],
style: {
color: "white",
},
},
];
return obj;
}} getConnectorDefaults={(connector, diagram) => {
connector.style = {
strokeColor: "#6BA5D7",
strokeWidth: 2,
};
connector.targetDecorator.style.fill = "#6BA5D7";
connector.targetDecorator.style.strokeColor = "#6BA5D7";
connector.targetDecorator.shape = "None";
connector.type = "Orthogonal";
return connector;
}}>
<Inject services={[DataBinding, HierarchicalTree]}/>
</DiagramComponent>);
}
const root = ReactDOM.createRoot(document.getElementById("diagram"));
root.render(<App />);
import * as React from "react";
import * as ReactDOM from "react-dom";
import {
Diagram,
DiagramComponent,
Inject,
ConnectorModel,
Node,
NodeModel,
DataBinding,
HierarchicalTree,
TreeInfo,
} from "@syncfusion/ej2-react-diagrams";
import { DataManager, Query } from "@syncfusion/ej2-data";
//Initializes data
let data: object[] = [
{
Id: 1,
Role: "General Manager",
},
{
Id: 2,
Role: "Assistant Manager",
Team: 1,
},
{
Id: 3,
Role: "Human Resource Manager",
Team: 1,
},
{
Id: 4,
Role: "Design Manager",
Team: 1,
},
{
Id: 5,
Role: "Operation Manager",
Team: 1,
},
{
Id: 6,
Role: "Marketing Manager",
Team: 1,
},
];
let items: DataManager = new DataManager(data as JSON[], new Query().take(7));
function App() {
return (
<DiagramComponent
id="container"
width={"100%"}
height={"530px"}
snapSettings={{
constraints: 0,
}}
//Uses layout to auto-arrange nodes on the diagram page
layout={{
//Sets layout type
type: "OrganizationalChart",
// define the getLayoutInfo
getLayoutInfo: (node: Node, options: TreeInfo) => {
if (node.data["Role"] === "General Manager") {
options.assistants.push(options.children[0]);
options.children.splice(0, 1);
}
if (!options.hasSubTree) {
options.type = "Center";
options.orientation = "Horizontal";
}
},
}}
//Initializes the node template.
dataSourceSettings={{
id: "Id",
parentId: "Team",
dataManager: items,
}}
//Sets the default properties for nodes and connectors
getNodeDefaults={(obj: NodeModel, diagram: Diagram) => {
obj.width = 150;
obj.height = 50;
obj.borderColor = "white";
obj.style.fill = "#6BA5D7";
obj.borderWidth = 1;
obj.annotations = [
{
content: obj.data["Role"],
style: {
color: "white",
},
},
];
return obj;
}}
getConnectorDefaults={(connector: ConnectorModel, diagram: Diagram) => {
connector.style = {
strokeColor: "#6BA5D7",
strokeWidth: 2,
};
connector.targetDecorator.style.fill = "#6BA5D7";
connector.targetDecorator.style.strokeColor = "#6BA5D7";
connector.targetDecorator.shape = "None";
connector.type = "Orthogonal";
return connector;
}}
>
<Inject services={[DataBinding, HierarchicalTree]} />
</DiagramComponent>
);
}
const root = ReactDOM.createRoot(document.getElementById("diagram"));
root.render(<App />);
Symmetric layout
The symmetric layout has been formed using nodes position by closer together or pushing them further apart. This is repeated iteratively until the system comes to an equilibrium state.
The layout’s springLength
defined as how long edges should be, ideally. This will be the resting length for the springs. Edge attraction and vertex repulsion forces to be defined by using layout’s springFactor
, the more sibling nodes repel each other. The relative positions do not change any more from one iteration to the next. The number of iterations can be specified by using layout’s maxIteration
.
Note: If you want to use symmetric layout in diagram, you need to inject SymmetricLayout in the diagram.
The following code illustrates how to arrange the nodes in a radial tree structure.
import * as React from "react";
import * as ReactDOM from "react-dom";
import { DiagramComponent, Inject, SymmetricLayout, } from "@syncfusion/ej2-react-diagrams";
let nodes = [];
let connectors = [];
// creating the connection between the layout nodes and connectors.
export function ConnectNodes(parentNode, childNode) {
let connector = {
id: parentNode.id + childNode.id,
sourceID: parentNode.id,
targetID: childNode.id,
targetDecorator: {
shape: "None",
},
};
return connector;
}
// creating the layout nodes as rectangle in shape.
export function GetRectangle(name) {
let shape = {
type: "Basic",
shape: "Ellipse",
};
let node = {
id: name,
height: 25,
width: 25,
borderColor: "white",
borderWidth: 1,
style: {
fill: "#6BA5D7",
},
shape: shape,
};
return node;
}
// creating the symmetrical layout child elements hierarchy.
export function populateNodes() {
let parentRect = GetRectangle("p");
nodes.push(parentRect);
for (let i = 0; i < 2; i++) {
let childRect_i = GetRectangle("c" + i);
nodes.push(childRect_i);
for (let j = 0; j < 2; j++) {
let childRect_j = GetRectangle("c" + i + j);
nodes.push(childRect_j);
for (let k = 0; k < 6; k++) {
let childRect_k = GetRectangle("c" + i + j + k);
nodes.push(childRect_k);
connectors.push(ConnectNodes(childRect_j, childRect_k));
}
connectors.push(ConnectNodes(childRect_i, childRect_j));
}
connectors.push(ConnectNodes(parentRect, childRect_i));
}
return nodes;
}
//sets the layout child elements
populateNodes();
function App() {
return (<DiagramComponent id="container" width={"100%"} height={"550px"} layout={{
//sets the layout as symmetric layout
type: "SymmetricalLayout",
springLength: 80,
springFactor: 0.8,
maxIteration: 500,
margin: {
left: 20,
top: 20,
},
}} nodes={nodes} connectors={connectors} getNodeDefaults={(obj, diagram) => {
obj.borderColor = "white";
obj.borderWidth = 1;
return obj;
}} getConnectorDefaults={(connector, diagram) => {
connector.style = {
strokeColor: "#6BA5D7",
strokeWidth: 2,
};
connector.targetDecorator.style.fill = "#6BA5D7";
connector.targetDecorator.style.strokeColor = "#6BA5D7";
return connector;
}}>
<Inject services={[SymmetricLayout]}/>
</DiagramComponent>);
}
const root = ReactDOM.createRoot(document.getElementById("diagram"));
root.render(<App />);
import * as React from "react";
import * as ReactDOM from "react-dom";
import {
Diagram,
DiagramComponent,
Inject,
ConnectorModel,
IConnector,
DataBinding,
HierarchicalTree,
LayoutOrientation,
LayoutType,
Rect,
HorizontalAlignment,
VerticalAlignment,
NodeModel,
BasicShapeModel,
SymmetricLayout,
} from "@syncfusion/ej2-react-diagrams";
let nodes: NodeModel[] = [];
let connectors: ConnectorModel[] = [];
// creating the connection between the layout nodes and connectors.
export function ConnectNodes(
parentNode: NodeModel,
childNode: NodeModel
): ConnectorModel {
let connector: ConnectorModel = {
id: parentNode.id + childNode.id,
sourceID: parentNode.id,
targetID: childNode.id,
targetDecorator: {
shape: "None",
},
};
return connector;
}
// creating the layout nodes as rectangle in shape.
export function GetRectangle(name: string): NodeModel {
let shape: BasicShapeModel = {
type: "Basic",
shape: "Ellipse",
};
let node: NodeModel = {
id: name,
height: 25,
width: 25,
borderColor: "white",
borderWidth: 1,
style: {
fill: "#6BA5D7",
},
shape: shape,
};
return node;
}
// creating the symmetrical layout child elements hierarchy.
export function populateNodes() {
let parentRect: NodeModel = GetRectangle("p");
nodes.push(parentRect);
for (let i: number = 0; i < 2; i++) {
let childRect_i: NodeModel = GetRectangle("c" + i);
nodes.push(childRect_i);
for (let j: number = 0; j < 2; j++) {
let childRect_j: NodeModel = GetRectangle("c" + i + j);
nodes.push(childRect_j);
for (let k: number = 0; k < 6; k++) {
let childRect_k: NodeModel = GetRectangle("c" + i + j + k);
nodes.push(childRect_k);
connectors.push(ConnectNodes(childRect_j, childRect_k));
}
connectors.push(ConnectNodes(childRect_i, childRect_j));
}
connectors.push(ConnectNodes(parentRect, childRect_i));
}
return nodes;
}
//sets the layout child elements
populateNodes();
function App() {
return (
<DiagramComponent
id="container"
width={"100%"}
height={"550px"}
layout={{
//sets the layout as symmetric layout
type: "SymmetricalLayout",
springLength: 80,
springFactor: 0.8,
maxIteration: 500,
margin: {
left: 20,
top: 20,
},
}}
nodes={nodes}
connectors={connectors}
getNodeDefaults={(obj: NodeModel, diagram: Diagram) => {
obj.borderColor = "white";
obj.borderWidth = 1;
return obj;
}}
getConnectorDefaults={(connector: ConnectorModel, diagram: Diagram) => {
connector.style = {
strokeColor: "#6BA5D7",
strokeWidth: 2,
};
connector.targetDecorator.style.fill = "#6BA5D7";
connector.targetDecorator.style.strokeColor = "#6BA5D7";
return connector;
}}
>
<Inject services={[SymmetricLayout]} />
</DiagramComponent>
);
}
const root = ReactDOM.createRoot(document.getElementById("diagram"));
root.render(<App />);
Mind Map layout
A mind map is a diagram that displays the nodes as a spider diagram organizes information around a central concept. To create mind map, the type
of layout should be set as MindMap
. The following code example illustrates how to create an organizational chart.
Note: If you want to use mind map layout in diagram, you need to inject MindMap in the diagram.
The following code example illustrates how to create an organizational chart.
import * as React from "react";
import * as ReactDOM from "react-dom";
import { DiagramComponent, Inject, DataBinding, MindMap, } from "@syncfusion/ej2-react-diagrams";
import { DataManager, Query } from "@syncfusion/ej2-data";
//Initializes data source
let data = [
{
id: 1,
Label: "StackPanel",
},
{
id: 2,
Label: "Label",
parentId: 1,
},
{
id: 3,
Label: "ListBox",
parentId: 1,
},
{
id: 4,
Label: "StackPanel",
parentId: 2,
},
{
id: 5,
Label: "Border",
parentId: 2,
},
{
id: 6,
Label: "Border",
parentId: 4,
},
{
id: 7,
Label: "Button",
parentId: 4,
},
{
id: 8,
Label: "ContentPresenter",
parentId: 5,
},
{
id: 9,
Label: "Text Block",
parentId: 5,
},
];
let items = new DataManager(data, new Query().take(7));
function App() {
return (<DiagramComponent id="container" width={"100%"} height={"550px"}
//Uses layout to auto-arrange nodes on the diagram page
layout={{
//Sets layout type
type: "MindMap",
}}
//Configures data source for diagram
dataSourceSettings={{
id: "id",
parentId: "parentId",
dataManager: items,
root: String(1),
}}
//Sets the default properties for nodes and connectors
getNodeDefaults={(obj) => {
obj.shape = {
type: "Text",
content: obj.data.Label,
};
obj.style = {
fill: "#6BA5D7",
strokeColor: "none",
strokeWidth: 2,
};
obj.borderColor = "white";
obj.backgroundColor = "#6BA5D7";
obj.borderWidth = 1;
obj.shape.margin = {
left: 5,
right: 5,
top: 5,
bottom: 5,
};
return obj;
}} getConnectorDefaults={(connector, diagram) => {
connector.style = {
strokeColor: "#6BA5D7",
strokeWidth: 2,
};
connector.targetDecorator.style.fill = "#6BA5D7";
connector.targetDecorator.style.strokeColor = "#6BA5D7";
connector.type = "Orthogonal";
return connector;
}}>
<Inject services={[DataBinding, MindMap]}/>
</DiagramComponent>);
}
const root = ReactDOM.createRoot(document.getElementById("diagram"));
root.render(<App />);
import * as React from "react";
import * as ReactDOM from "react-dom";
import {
Diagram,
DiagramComponent,
Inject,
ConnectorModel,
Node,
DataBinding,
LayoutType,
Rect,
HorizontalAlignment,
VerticalAlignment,
NodeModel,
TextModel,
MindMap,
} from "@syncfusion/ej2-react-diagrams";
import { DataManager, Query } from "@syncfusion/ej2-data";
//Initializes data source
let data: object[] = [
{
id: 1,
Label: "StackPanel",
},
{
id: 2,
Label: "Label",
parentId: 1,
},
{
id: 3,
Label: "ListBox",
parentId: 1,
},
{
id: 4,
Label: "StackPanel",
parentId: 2,
},
{
id: 5,
Label: "Border",
parentId: 2,
},
{
id: 6,
Label: "Border",
parentId: 4,
},
{
id: 7,
Label: "Button",
parentId: 4,
},
{
id: 8,
Label: "ContentPresenter",
parentId: 5,
},
{
id: 9,
Label: "Text Block",
parentId: 5,
},
];
let items: DataManager = new DataManager(data as JSON[], new Query().take(7));
function App() {
return (
<DiagramComponent
id="container"
width={"100%"}
height={"550px"}
//Uses layout to auto-arrange nodes on the diagram page
layout={{
//Sets layout type
type: "MindMap",
}}
//Configures data source for diagram
dataSourceSettings={{
id: "id",
parentId: "parentId",
dataManager: items,
root: String(1),
}}
//Sets the default properties for nodes and connectors
getNodeDefaults={(obj: NodeModel) => {
obj.shape = {
type: "Text",
content: (
obj.data as {
Label: "string";
}
).Label,
};
obj.style = {
fill: "#6BA5D7",
strokeColor: "none",
strokeWidth: 2,
};
obj.borderColor = "white";
obj.backgroundColor = "#6BA5D7";
obj.borderWidth = 1;
(obj.shape as TextModel).margin = {
left: 5,
right: 5,
top: 5,
bottom: 5,
};
return obj;
}}
getConnectorDefaults={(connector: ConnectorModel, diagram: Diagram) => {
connector.style = {
strokeColor: "#6BA5D7",
strokeWidth: 2,
};
connector.targetDecorator.style.fill = "#6BA5D7";
connector.targetDecorator.style.strokeColor = "#6BA5D7";
connector.type = "Orthogonal";
return connector;
}}
>
<Inject services={[DataBinding, MindMap]} />
</DiagramComponent>
);
}
const root = ReactDOM.createRoot(document.getElementById("diagram"));
root.render(<App />);
Complex hierarchical tree
Complex hierarchical tree layout is the extended version of the hierarchical tree layout. The child had been two or more parents. To create a complex hierarchical tree, the type
of layout should be set as ComplexHierarchicalTree
.
Note: If you want to use Complex hierarchical layout in diagram, you need to inject ComplexHierarchicalTree in the diagram.
The following code example illustrates how to create a complex hierarchical tree.
import * as React from "react";
import * as ReactDOM from "react-dom";
import { DiagramComponent, Inject, DataBinding, ComplexHierarchicalTree, } from "@syncfusion/ej2-react-diagrams";
//Initializes nodes
let node = [
{
id: "node1",
width: 70,
height: 70,
annotations: [
{
content: "node1",
},
],
},
{
id: "node2",
width: 70,
height: 70,
annotations: [
{
content: "node2",
},
],
},
{
id: "node3",
width: 70,
height: 70,
annotations: [
{
content: "node3",
},
],
},
{
id: "node4",
width: 70,
height: 70,
annotations: [
{
content: "node4",
},
],
},
{
id: "node5",
width: 70,
height: 70,
annotations: [
{
content: "node5",
},
],
},
{
id: "node8",
width: 70,
height: 70,
annotations: [
{
content: "node8",
},
],
},
{
id: "node9",
width: 70,
height: 70,
annotations: [
{
content: "node9",
},
],
},
];
let connector = [
{
id: "connectr",
sourceID: "node1",
targetID: "node4",
},
{
id: "connectr1",
sourceID: "node2",
targetID: "node4",
},
{
id: "connectr3",
sourceID: "node3",
targetID: "node4",
},
{
id: "connectr4",
sourceID: "node4",
targetID: "node5",
},
];
function App() {
return (<DiagramComponent id="container" width={1000} height={1000} nodes={node} connectors={connector}
//Uses layout to auto-arrange nodes on the diagram page
layout={{
//Sets layout type
type: "ComplexHierarchicalTree",
orientation: "TopToBottom",
}}
//Sets the default properties for nodes and connectors
getNodeDefaults={(obj) => {
obj.shape = {
type: "Text",
};
obj.style = {
fill: "#6BA5D7",
strokeColor: "none",
strokeWidth: 2,
};
obj.borderColor = "white";
obj.backgroundColor = "#6BA5D7";
obj.borderWidth = 1;
obj.shape.margin = {
left: 5,
right: 5,
top: 5,
bottom: 5,
};
return obj;
}} getConnectorDefaults={(connector, diagram) => {
connector.style = {
strokeColor: "#6BA5D7",
strokeWidth: 2,
};
connector.targetDecorator.style.fill = "#6BA5D7";
connector.targetDecorator.style.strokeColor = "#6BA5D7";
connector.type = "Orthogonal";
return connector;
}}>
<Inject services={[ComplexHierarchicalTree, DataBinding]}/>
</DiagramComponent>);
}
const root = ReactDOM.createRoot(document.getElementById("diagram"));
root.render(<App />);
import * as React from "react";
import * as ReactDOM from "react-dom";
import {
Diagram,
DiagramComponent,
Inject,
ConnectorModel,
NodeModel,
TextModel,
DataBinding,
DiagramConstraints,
ComplexHierarchicalTree,
} from "@syncfusion/ej2-react-diagrams";
import { DataManager, Query } from "@syncfusion/ej2-data";
//Initializes nodes
let node: NodeModel[] = [
{
id: "node1",
width: 70,
height: 70,
annotations: [
{
content: "node1",
},
],
},
{
id: "node2",
width: 70,
height: 70,
annotations: [
{
content: "node2",
},
],
},
{
id: "node3",
width: 70,
height: 70,
annotations: [
{
content: "node3",
},
],
},
{
id: "node4",
width: 70,
height: 70,
annotations: [
{
content: "node4",
},
],
},
{
id: "node5",
width: 70,
height: 70,
annotations: [
{
content: "node5",
},
],
},
{
id: "node8",
width: 70,
height: 70,
annotations: [
{
content: "node8",
},
],
},
{
id: "node9",
width: 70,
height: 70,
annotations: [
{
content: "node9",
},
],
},
];
let connector: ConnectorModel[] = [
{
id: "connectr",
sourceID: "node1",
targetID: "node4",
},
{
id: "connectr1",
sourceID: "node2",
targetID: "node4",
},
{
id: "connectr3",
sourceID: "node3",
targetID: "node4",
},
{
id: "connectr4",
sourceID: "node4",
targetID: "node5",
},
];
function App() {
return (
<DiagramComponent
id="container"
width={1000}
height={1000}
nodes={node}
connectors={connector}
//Uses layout to auto-arrange nodes on the diagram page
layout={{
//Sets layout type
type: "ComplexHierarchicalTree",
orientation: "TopToBottom",
}}
//Sets the default properties for nodes and connectors
getNodeDefaults={(obj: NodeModel) => {
obj.shape = {
type: "Text",
};
obj.style = {
fill: "#6BA5D7",
strokeColor: "none",
strokeWidth: 2,
};
obj.borderColor = "white";
obj.backgroundColor = "#6BA5D7";
obj.borderWidth = 1;
(obj.shape as TextModel).margin = {
left: 5,
right: 5,
top: 5,
bottom: 5,
};
return obj;
}}
getConnectorDefaults={(connector: ConnectorModel, diagram: Diagram) => {
connector.style = {
strokeColor: "#6BA5D7",
strokeWidth: 2,
};
connector.targetDecorator.style.fill = "#6BA5D7";
connector.targetDecorator.style.strokeColor = "#6BA5D7";
connector.type = "Orthogonal";
return connector;
}}
>
<Inject services={[ComplexHierarchicalTree, DataBinding]} />
</DiagramComponent>
);
}
const root = ReactDOM.createRoot(document.getElementById("diagram"));
root.render(<App />);
Line Distribution
Line distribution is used to arrange the connectors without overlapping in automatic layout. In some cases, the automatic layout connectors connecting to the nodes will be overlapped with one another. So user can decide whether the segment of each connector from a single parent node should be same point or different point. The connectionPointOrigin
property of layout is used to enable or disable the line distribution in layout. By default ConnectionPointOrigin will be SamePoint
.
The following code example illustrates how to create a complex hierarchical tree with line distribution.
Note: If you want to use line distribution in diagram layout, you need to inject LineDistribution module in the diagram.
import * as React from "react";
import * as ReactDOM from "react-dom";
import { DiagramComponent, Inject, ComplexHierarchicalTree, ConnectionPointOrigin, LineDistribution, DataBinding, } from "@syncfusion/ej2-react-diagrams";
import { DataManager, Query } from "@syncfusion/ej2-data";
let diagramInstance;
//Initializes data source
let data = [
{ Name: "node11" },
{ Name: "node12", ReportingPerson: ["node114"] },
{ Name: "node13", ReportingPerson: ["node12"] },
{ Name: "node14", ReportingPerson: ["node12"] },
{ Name: "node15", ReportingPerson: ["node12"] },
{ Name: "node116", ReportingPerson: ["node22", "node12"] },
{ Name: "node16", ReportingPerson: [] },
{ Name: "node18", ReportingPerson: [] },
{ Name: "node21" },
{ Name: "node22", ReportingPerson: ["node114"] },
{ Name: "node23", ReportingPerson: ["node22"] },
{ Name: "node24", ReportingPerson: ["node22"] },
{ Name: "node25", ReportingPerson: ["node22"] },
{ Name: "node26", ReportingPerson: [] },
{ Name: "node28", ReportingPerson: [] },
{ Name: "node31" },
{ Name: "node114", ReportingPerson: ["node11", "node21", "node31"] },
];
let items = new DataManager(data, new Query().take(7));
function App() {
return (<DiagramComponent id="container" ref={(diagram) => (diagramInstance = diagram)} width={"100%"} height={"590px"} snapSettings={{
constraints: 0,
}} created={(args) => {
diagramInstance.fitToPage({ mode: "Width" });
}} layout={{
type: "ComplexHierarchicalTree",
connectionPointOrigin: ConnectionPointOrigin.DifferentPoint,
horizontalSpacing: 40,
verticalSpacing: 40,
horizontalAlignment: "Left",
verticalAlignment: "Top",
margin: { left: 0, right: 0, top: 0, bottom: 0 },
orientation: "TopToBottom",
}} dataSourceSettings={{
id: "Name",
parentId: "ReportingPerson",
dataManager: items,
}} getNodeDefaults={(obj) => {
obj.width = 40;
obj.height = 40;
obj.shape = { type: "Basic", shape: "Rectangle" };
obj.style = { fill: "#6BA5D7", strokeColor: "none", strokeWidth: 2 };
obj.borderWidth = 1;
obj.backgroundColor = "#6BA5D7";
return obj;
}} getConnectorDefaults={(connector, diagram) => {
connector.type = "Orthogonal";
connector.cornerRadius = 7;
connector.targetDecorator.height = 7;
connector.targetDecorator.width = 7;
connector.style = { strokeColor: "#6BA5D7", strokeWidth: 1 };
connector.targetDecorator.style.fill = "#6BA5D7";
connector.targetDecorator.style.strokeColor = "#6BA5D7";
return connector;
}}>
<Inject services={[DataBinding, ComplexHierarchicalTree, LineDistribution]}/>
</DiagramComponent>);
}
// Initializes the diagram
const root = ReactDOM.createRoot(document.getElementById("diagram"));
root.render(<App />);
import * as React from "react";
import * as ReactDOM from "react-dom";
import {
Diagram,
DiagramComponent,
Inject,
ConnectorModel,
NodeModel,
DiagramConstraints,
ComplexHierarchicalTree,
ConnectionPointOrigin,
LineDistribution,
DataBinding,
Rect,
} from "@syncfusion/ej2-react-diagrams";
import { DataManager, Query } from "@syncfusion/ej2-data";
let diagramInstance: Diagram;
//Initializes data source
let data: object[] = [
{ Name: "node11" },
{ Name: "node12", ReportingPerson: ["node114"] },
{ Name: "node13", ReportingPerson: ["node12"] },
{ Name: "node14", ReportingPerson: ["node12"] },
{ Name: "node15", ReportingPerson: ["node12"] },
{ Name: "node116", ReportingPerson: ["node22", "node12"] },
{ Name: "node16", ReportingPerson: [] },
{ Name: "node18", ReportingPerson: [] },
{ Name: "node21" },
{ Name: "node22", ReportingPerson: ["node114"] },
{ Name: "node23", ReportingPerson: ["node22"] },
{ Name: "node24", ReportingPerson: ["node22"] },
{ Name: "node25", ReportingPerson: ["node22"] },
{ Name: "node26", ReportingPerson: [] },
{ Name: "node28", ReportingPerson: [] },
{ Name: "node31" },
{ Name: "node114", ReportingPerson: ["node11", "node21", "node31"] },
];
let items: DataManager = new DataManager(data as JSON[], new Query().take(7));
function App() {
return (
<DiagramComponent
id="container"
ref={(diagram) => (diagramInstance = diagram)}
width={"100%"}
height={"590px"}
snapSettings={{
constraints: 0,
}}
created={(args) => {
diagramInstance.fitToPage({ mode: "Width" });
}}
layout={{
type: "ComplexHierarchicalTree",
connectionPointOrigin: ConnectionPointOrigin.DifferentPoint,
horizontalSpacing: 40,
verticalSpacing: 40,
horizontalAlignment: "Left",
verticalAlignment: "Top",
margin: { left: 0, right: 0, top: 0, bottom: 0 },
orientation: "TopToBottom",
}}
dataSourceSettings={{
id: "Name",
parentId: "ReportingPerson",
dataManager: items,
}}
getNodeDefaults={(obj: Node) => {
obj.width = 40;
obj.height = 40;
obj.shape = { type: "Basic", shape: "Rectangle" };
obj.style = { fill: "#6BA5D7", strokeColor: "none", strokeWidth: 2 };
obj.borderWidth = 1;
obj.backgroundColor = "#6BA5D7";
return obj;
}}
getConnectorDefaults={(connector: ConnectorModel, diagram: Diagram) => {
connector.type = "Orthogonal";
connector.cornerRadius = 7;
connector.targetDecorator.height = 7;
connector.targetDecorator.width = 7;
connector.style = { strokeColor: "#6BA5D7", strokeWidth: 1 };
connector.targetDecorator.style.fill = "#6BA5D7";
connector.targetDecorator.style.strokeColor = "#6BA5D7";
return connector;
}}
>
<Inject
services={[DataBinding, ComplexHierarchicalTree, LineDistribution]}
/>
</DiagramComponent>
);
}
// Initializes the diagram
const root = ReactDOM.createRoot(document.getElementById("diagram"));
root.render(<App />);
Linear Arrangement
Linear arrangement is used to linearly arrange the child nodes in layout, which means the parent node is placed in the center corresponding to its children. When line distribution is enabled, linear arrangement is also activated by default. The arrangement
property of layout is used to enable or disable the linear arrangement in layout. By default childArrangement will be Nonlinear
.
Note: If you want to use linear arrangement in diagram layout, you need to inject LineDistribution module in the diagram. Linear arrangement is applicable only for complex hierarchical tree layout.
function App() {
return (
<DiagramComponent
id="container"
width={"100%"}
height={"590px"}
layout={{
type: "ComplexHierarchicalTree",
//To arrange a child nodes in a linear manner
arrangement: ChildArrangement.Linear,
horizontalSpacing: 40,
verticalSpacing: 40,
orientation: "TopToBottom",
}}
>
<Inject
services={[DataBinding, ComplexHierarchicalTree, LineDistribution]}
/>
</DiagramComponent>
);
}
const root = ReactDOM.createRoot(document.getElementById("diagram"));
root.render(<App />);
Prevent connectors overlay
The below constraints prevents the connector segments overlapping nodes with a complex hierarchical layout.
function App() {
return (
<DiagramComponent
id="container"
width={"100%"}
height={"590px"}
layout={{
//this prevents connector segments overlapping
enableRouting: true,
}}
>
<Inject
services={[DataBinding, ComplexHierarchicalTree, LineDistribution]}
/>
</DiagramComponent>
);
}
const root = ReactDOM.createRoot(document.getElementById("diagram"));
root.render(<App />);
Customize layout
Orientation, spacings, and position of the layout can be customized with a set of properties.
To explore layout properties, refer to Layout Properties
.
Layout bounds
Diagram provides support to align the layout within any custom rectangular area. For more information about bounds, refer to bounds
.
Layout alignment
The layout can be aligned anywhere over the layout bounds/viewport using the horizontalAlignment
and verticalAlignment
properties of the layout.
The following code illustrates how to align the layout at the top-left of the layout bounds.
import * as React from "react";
import * as ReactDOM from "react-dom";
import { DiagramComponent, Inject, HierarchicalTree, DataBinding, Rect, } from "@syncfusion/ej2-react-diagrams";
import { DataManager, Query } from "@syncfusion/ej2-data";
//Initializes data source
let data = [
{
Name: "Steve-Ceo",
},
{
Name: "Kevin-Manager",
ReportingPerson: "Steve-Ceo",
},
{
Name: "Peter-Manager",
ReportingPerson: "Kevin-Manager",
},
{
Name: "John- Manager",
ReportingPerson: "Peter-Manager",
},
{
Name: "Mary-CSE ",
ReportingPerson: "Peter-Manager",
},
];
let items = new DataManager(data, new Query().take(7));
function App() {
<DiagramComponent id="container" width={"100%"} height={"550px"}
//Uses layout to auto-arrange nodes on the diagram page
layout={{
//Sets layout type
type: "HierarchicalTree",
//set layout alignment
bounds: new Rect(0, 0, 500, 500),
horizontalSpacing: 25,
verticalSpacing: 30,
horizontalAlignment: "Left",
verticalAlignment: "Top",
}} dataSourceSettings={{
id: "Name",
parentId: "ReportingPerson",
dataManager: items,
}} getNodeDefaults={(obj) => {
obj.shape = {
type: "Text",
content: obj.data.Name,
};
obj.style = {
fill: "None",
strokeColor: "none",
strokeWidth: 2,
bold: true,
color: "white",
};
obj.width = 100;
obj.height = 40;
obj.borderColor = "white";
obj.backgroundColor = "#6BA5D7";
obj.borderWidth = 1;
return obj;
}} getConnectorDefaults={(connector, diagram) => {
connector.style = {
strokeColor: "#6BA5D7",
strokeWidth: 2,
};
connector.targetDecorator.style.fill = "#6BA5D7";
connector.targetDecorator.style.strokeColor = "#6BA5D7";
connector.type = "Orthogonal";
return connector;
}}>
<Inject services={[DataBinding, HierarchicalTree]}/>
</DiagramComponent>;
}
const root = ReactDOM.createRoot(document.getElementById("diagram"));
root.render(<App />);
import * as React from "react";
import * as ReactDOM from "react-dom";
import {
Diagram,
DiagramComponent,
Inject,
ConnectorModel,
NodeModel,
DiagramConstraints,
HierarchicalTree,
TextModel,
DataBinding,
Rect,
} from "@syncfusion/ej2-react-diagrams";
import { DataManager, Query } from "@syncfusion/ej2-data";
//Initializes data source
let data: object[] = [
{
Name: "Steve-Ceo",
},
{
Name: "Kevin-Manager",
ReportingPerson: "Steve-Ceo",
},
{
Name: "Peter-Manager",
ReportingPerson: "Kevin-Manager",
},
{
Name: "John- Manager",
ReportingPerson: "Peter-Manager",
},
{
Name: "Mary-CSE ",
ReportingPerson: "Peter-Manager",
},
];
let items: DataManager = new DataManager(data as JSON[], new Query().take(7));
function App() {
return (
<DiagramComponent
id="container"
width={"100%"}
height={"550px"}
//Uses layout to auto-arrange nodes on the diagram page
layout={{
//Sets layout type
type: "HierarchicalTree",
//set layout alignment
bounds: new Rect(0, 0, 500, 500),
horizontalSpacing: 25,
verticalSpacing: 30,
horizontalAlignment: "Left",
verticalAlignment: "Top",
}}
dataSourceSettings={{
id: "Name",
parentId: "ReportingPerson",
dataManager: items,
}}
getNodeDefaults={(obj: NodeModel) => {
obj.shape = {
type: "Text",
content: (
obj.data as {
Name: "string";
}
).Name,
};
obj.style = {
fill: "None",
strokeColor: "none",
strokeWidth: 2,
bold: true,
color: "white",
};
obj.width = 100;
obj.height = 40;
obj.borderColor = "white";
obj.backgroundColor = "#6BA5D7";
obj.borderWidth = 1;
return obj;
}}
getConnectorDefaults={(connector: ConnectorModel, diagram: Diagram) => {
connector.style = {
strokeColor: "#6BA5D7",
strokeWidth: 2,
};
connector.targetDecorator.style.fill = "#6BA5D7";
connector.targetDecorator.style.strokeColor = "#6BA5D7";
connector.type = "Orthogonal";
return connector;
}}
>
<Inject services={[DataBinding, HierarchicalTree]} />
</DiagramComponent>
);
}
const root = ReactDOM.createRoot(document.getElementById("diagram"));
root.render(<App />);
Layout spacing
Layout provides support to add space horizontally and vertically between the nodes. The horizontalSpacing
and verticalSpacing
properties of the layout allows you to set the space between the nodes in horizontally and vertically.
Layout margin
Layout provides support to add some blank space between the layout bounds/viewport and the layout. The margin
property of the layout allows you to set the blank space.
The following code illustrates how to set the layout margin.
import * as React from "react";
import * as ReactDOM from "react-dom";
import { DiagramComponent, Inject, HierarchicalTree, DataBinding, Rect, } from "@syncfusion/ej2-react-diagrams";
import { DataManager, Query } from "@syncfusion/ej2-data";
//Initializes data source
let data = [
{
Name: "Steve-Ceo",
},
{
Name: "Kevin-Manager",
ReportingPerson: "Steve-Ceo",
},
{
Name: "Peter-Manager",
ReportingPerson: "Kevin-Manager",
},
{
Name: "John- Manager",
ReportingPerson: "Peter-Manager",
},
{
Name: "Mary-CSE ",
ReportingPerson: "Peter-Manager",
},
];
let items = new DataManager(data, new Query().take(7));
function App() {
return (<DiagramComponent id="container" width={"100%"} height={"550px"}
//Uses layout to auto-arrange nodes on the diagram page
layout={{
//Sets layout type
type: "HierarchicalTree",
bounds: new Rect(0, 0, 500, 500),
horizontalSpacing: 25,
verticalSpacing: 30,
horizontalAlignment: "Left",
verticalAlignment: "Top",
}}
//Sets the default properties for nodes and connectors
dataSourceSettings={{
id: "Name",
parentId: "ReportingPerson",
dataManager: items,
}}
//Configures data source for diagram
getNodeDefaults={(obj) => {
obj.shape = {
type: "Text",
content: obj.data.Name,
};
obj.style = {
fill: "None",
strokeColor: "none",
strokeWidth: 2,
bold: true,
color: "white",
};
obj.width = 50;
obj.height = 40;
obj.borderColor = "white";
obj.backgroundColor = "#6BA5D7";
obj.borderWidth = 1;
obj.shape.margin = {
left: 25,
right: 25,
top: 25,
bottom: 25,
};
return obj;
}} getConnectorDefaults={(connector, diagram) => {
connector.style = {
strokeColor: "#6BA5D7",
strokeWidth: 2,
};
connector.targetDecorator.style.fill = "#6BA5D7";
connector.targetDecorator.style.strokeColor = "#6BA5D7";
connector.type = "Orthogonal";
return connector;
}}>
<Inject services={[DataBinding, HierarchicalTree]}/>
</DiagramComponent>);
}
const root = ReactDOM.createRoot(document.getElementById("diagram"));
root.render(<App />);
import * as React from "react";
import * as ReactDOM from "react-dom";
import {
Diagram,
DiagramComponent,
Inject,
ConnectorModel,
NodeModel,
DiagramConstraints,
HierarchicalTree,
TextModel,
DataBinding,
Rect,
} from "@syncfusion/ej2-react-diagrams";
import { DataManager, Query } from "@syncfusion/ej2-data";
//Initializes data source
let data: object[] = [
{
Name: "Steve-Ceo",
},
{
Name: "Kevin-Manager",
ReportingPerson: "Steve-Ceo",
},
{
Name: "Peter-Manager",
ReportingPerson: "Kevin-Manager",
},
{
Name: "John- Manager",
ReportingPerson: "Peter-Manager",
},
{
Name: "Mary-CSE ",
ReportingPerson: "Peter-Manager",
},
];
let items: DataManager = new DataManager(data as JSON[], new Query().take(7));
function App() {
return (
<DiagramComponent
id="container"
width={"100%"}
height={"550px"}
//Uses layout to auto-arrange nodes on the diagram page
layout={{
//Sets layout type
type: "HierarchicalTree",
bounds: new Rect(0, 0, 500, 500),
horizontalSpacing: 25,
verticalSpacing: 30,
horizontalAlignment: "Left",
verticalAlignment: "Top",
}}
//Sets the default properties for nodes and connectors
dataSourceSettings={{
id: "Name",
parentId: "ReportingPerson",
dataManager: items,
}}
//Configures data source for diagram
getNodeDefaults={(obj: NodeModel) => {
obj.shape = {
type: "Text",
content: (
obj.data as {
Name: "string";
}
).Name,
};
obj.style = {
fill: "None",
strokeColor: "none",
strokeWidth: 2,
bold: true,
color: "white",
};
obj.width = 50;
obj.height = 40;
obj.borderColor = "white";
obj.backgroundColor = "#6BA5D7";
obj.borderWidth = 1;
(obj.shape as TextModel).margin = {
left: 25,
right: 25,
top: 25,
bottom: 25,
};
return obj;
}}
getConnectorDefaults={(connector: ConnectorModel, diagram: Diagram) => {
connector.style = {
strokeColor: "#6BA5D7",
strokeWidth: 2,
};
connector.targetDecorator.style.fill = "#6BA5D7";
connector.targetDecorator.style.strokeColor = "#6BA5D7";
connector.type = "Orthogonal";
return connector;
}}
>
<Inject services={[DataBinding, HierarchicalTree]} />
</DiagramComponent>
);
}
const root = ReactDOM.createRoot(document.getElementById("diagram"));
root.render(<App />);
Layout orientation
The layout orientation can used to arrange the layout based on the direction. there are different orientation types that are defined in the following table.
Orientation | Description |
---|---|
TopToBottom | Aligns the layout from top to bottom. All the roots are placed at top of diagram. |
LeftToRight | Aligns the layout from left to right. All the roots are placed at left of diagram. |
BottomToTop | Aligns the layout from bottom to top. All the roots are placed at bottom of the diagram. |
RightToLeft | Aligns the layout from right to left. All the roots are placed at right of the diagram. |
Diagram provides support to customize the orientation
of layout. You can set the desired orientation using layout.orientation.
Note: In the diagram the default orientation is TopToBottom.
The following code illustrates how to arrange the nodes in a BottomToTop orientation.
import * as React from "react";
import * as ReactDOM from "react-dom";
import { DiagramComponent, Inject, HierarchicalTree, DataBinding, Rect, } from "@syncfusion/ej2-react-diagrams";
import { DataManager, Query } from "@syncfusion/ej2-data";
//Initializes data source
let data = [
{
Name: "Steve-Ceo",
},
{
Name: "Kevin-Manager",
ReportingPerson: "Steve-Ceo",
},
{
Name: "Peter-Manager",
ReportingPerson: "Steve-Ceo",
},
{
Name: "John- Manager",
ReportingPerson: "Peter-Manager",
},
{
Name: "Mary-CSE ",
ReportingPerson: "Peter-Manager",
},
{
Name: "Jim-CSE ",
ReportingPerson: "Kevin-Manager",
},
{
Name: "Martin-CSE",
ReportingPerson: "Kevin-Manager",
},
];
let items = new DataManager(data, new Query().take(7));
function App() {
return (<DiagramComponent id="container" width={"100%"} height={"550px"}
//Uses layout to auto-arrange nodes on the diagram page
layout={{
//Sets layout type
type: "HierarchicalTree",
bounds: new Rect(0, 0, 500, 500),
horizontalSpacing: 25,
verticalSpacing: 30,
horizontalAlignment: "Left",
verticalAlignment: "Top",
orientation: "BottomToTop",
}} dataSourceSettings={{
id: "Name",
parentId: "ReportingPerson",
dataManager: items,
}}
//Sets the default properties for nodes and connectors
getNodeDefaults={(obj) => {
obj.shape = {
type: "Text",
content: obj.data.Name,
};
obj.style = {
fill: "None",
strokeColor: "none",
strokeWidth: 2,
bold: true,
color: "white",
};
obj.width = 50;
obj.height = 40;
obj.borderColor = "white";
obj.backgroundColor = "#6BA5D7";
obj.borderWidth = 1;
obj.shape.margin = {
left: 25,
right: 25,
top: 25,
bottom: 25,
};
return obj;
}} getConnectorDefaults={(connector, diagram) => {
connector.style = {
strokeColor: "#6BA5D7",
strokeWidth: 2,
};
connector.targetDecorator.style.fill = "#6BA5D7";
connector.targetDecorator.style.strokeColor = "#6BA5D7";
connector.type = "Orthogonal";
return connector;
}}>
<Inject services={[DataBinding, HierarchicalTree]}/>
</DiagramComponent>);
}
const root = ReactDOM.createRoot(document.getElementById("diagram"));
root.render(<App />);
import * as React from "react";
import * as ReactDOM from "react-dom";
import {
Diagram,
DiagramComponent,
Inject,
ConnectorModel,
NodeModel,
DiagramConstraints,
HierarchicalTree,
TextModel,
DataBinding,
Rect,
} from "@syncfusion/ej2-react-diagrams";
import { DataManager, Query } from "@syncfusion/ej2-data";
//Initializes data source
let data: object[] = [
{
Name: "Steve-Ceo",
},
{
Name: "Kevin-Manager",
ReportingPerson: "Steve-Ceo",
},
{
Name: "Peter-Manager",
ReportingPerson: "Steve-Ceo",
},
{
Name: "John- Manager",
ReportingPerson: "Peter-Manager",
},
{
Name: "Mary-CSE ",
ReportingPerson: "Peter-Manager",
},
{
Name: "Jim-CSE ",
ReportingPerson: "Kevin-Manager",
},
{
Name: "Martin-CSE",
ReportingPerson: "Kevin-Manager",
},
];
let items: DataManager = new DataManager(data as JSON[], new Query().take(7));
function App() {
return (
<DiagramComponent
id="container"
width={"100%"}
height={"550px"}
//Uses layout to auto-arrange nodes on the diagram page
layout={{
//Sets layout type
type: "HierarchicalTree",
bounds: new Rect(0, 0, 500, 500),
horizontalSpacing: 25,
verticalSpacing: 30,
horizontalAlignment: "Left",
verticalAlignment: "Top",
orientation: "BottomToTop",
}}
dataSourceSettings={{
id: "Name",
parentId: "ReportingPerson",
dataManager: items,
}}
//Sets the default properties for nodes and connectors
getNodeDefaults={(obj: NodeModel) => {
obj.shape = {
type: "Text",
content: (
obj.data as {
Name: "string";
}
).Name,
};
obj.style = {
fill: "None",
strokeColor: "none",
strokeWidth: 2,
bold: true,
color: "white",
};
obj.width = 50;
obj.height = 40;
obj.borderColor = "white";
obj.backgroundColor = "#6BA5D7";
obj.borderWidth = 1;
(obj.shape as TextModel).margin = {
left: 25,
right: 25,
top: 25,
bottom: 25,
};
return obj;
}}
getConnectorDefaults={(connector: ConnectorModel, diagram: Diagram) => {
connector.style = {
strokeColor: "#6BA5D7",
strokeWidth: 2,
};
connector.targetDecorator.style.fill = "#6BA5D7";
connector.targetDecorator.style.strokeColor = "#6BA5D7";
connector.type = "Orthogonal";
return connector;
}}
>
<Inject services={[DataBinding, HierarchicalTree]} />
</DiagramComponent>
);
}
const root = ReactDOM.createRoot(document.getElementById("diagram"));
root.render(<App />);
Fixed node
Layout provides support to arrange the nodes with reference to the position of a fixed node and set it to the fixedNode
of the layout property. This is helpful when you try to expand/collapse a node. It might be expected that the position of the double-clicked node should not be changed.
import * as React from "react";
import * as ReactDOM from "react-dom";
import { DiagramComponent, Inject, HierarchicalTree, DataBinding, Rect, } from "@syncfusion/ej2-react-diagrams";
import { DataManager, Query } from "@syncfusion/ej2-data";
//Initializes data source
let data = [
{
Name: "Steve-Ceo",
//set the offsetX and offsetY for the parent node
offsetX: 250,
offsetY: 50,
},
{
Name: "Kevin-Manager",
ReportingPerson: "Steve-Ceo",
},
{
Name: "Peter-Manager",
ReportingPerson: "Steve-Ceo",
},
{
Name: "John- Manager",
ReportingPerson: "Peter-Manager",
},
{
Name: "Mary-CSE ",
ReportingPerson: "Peter-Manager",
},
{
Name: "Jim-CSE ",
ReportingPerson: "Kevin-Manager",
},
{
Name: "Martin-CSE",
ReportingPerson: "Kevin-Manager",
},
];
let items = new DataManager(data, new Query().take(7));
function App() {
return (<DiagramComponent id="container" width={"100%"} height={"550px"}
//Defines default layout
layout={{
type: "HierarchicalTree",
bounds: new Rect(0, 0, 500, 500),
horizontalSpacing: 25,
verticalSpacing: 30,
horizontalAlignment: "Left",
verticalAlignment: "Top",
}} dataSourceSettings={{
id: "Name",
parentId: "ReportingPerson",
dataManager: items,
}}
//Sets the default properties of the node.
getNodeDefaults={(obj) => {
obj.shape = {
type: "Text",
content: obj.data.Name,
};
obj.style = {
fill: "None",
strokeColor: "none",
strokeWidth: 2,
bold: true,
color: "white",
};
obj.width = 50;
obj.height = 40;
obj.borderColor = "white";
obj.backgroundColor = "#6BA5D7";
obj.borderWidth = 1;
obj.shape.margin = {
left: 25,
right: 25,
top: 25,
bottom: 25,
};
return obj;
}}
//Sets the default properties of the connector.
getConnectorDefaults={(connector, diagram) => {
connector.style = {
strokeColor: "#6BA5D7",
strokeWidth: 2,
};
connector.targetDecorator.style.fill = "#6BA5D7";
connector.targetDecorator.style.strokeColor = "#6BA5D7";
connector.type = "Orthogonal";
return connector;
}}>
<Inject services={[DataBinding, HierarchicalTree]}/>
</DiagramComponent>);
}
const root = ReactDOM.createRoot(document.getElementById("diagram"));
root.render(<App />);
import * as React from "react";
import * as ReactDOM from "react-dom";
import {
Diagram,
DiagramComponent,
Inject,
ConnectorModel,
NodeModel,
DiagramConstraints,
HierarchicalTree,
TextModel,
DataBinding,
Rect,
} from "@syncfusion/ej2-react-diagrams";
import { DataManager, Query } from "@syncfusion/ej2-data";
//Initializes data source
let data: object[] = [
{
Name: "Steve-Ceo",
//set the offsetX and offsetY for the parent node
offsetX: 250,
offsetY: 50,
},
{
Name: "Kevin-Manager",
ReportingPerson: "Steve-Ceo",
},
{
Name: "Peter-Manager",
ReportingPerson: "Steve-Ceo",
},
{
Name: "John- Manager",
ReportingPerson: "Peter-Manager",
},
{
Name: "Mary-CSE ",
ReportingPerson: "Peter-Manager",
},
{
Name: "Jim-CSE ",
ReportingPerson: "Kevin-Manager",
},
{
Name: "Martin-CSE",
ReportingPerson: "Kevin-Manager",
},
];
let items: DataManager = new DataManager(data as JSON[], new Query().take(7));
function App() {
return (
<DiagramComponent
id="container"
width={"100%"}
height={"550px"}
//Defines default layout
layout={{
type: "HierarchicalTree",
bounds: new Rect(0, 0, 500, 500),
horizontalSpacing: 25,
verticalSpacing: 30,
horizontalAlignment: "Left",
verticalAlignment: "Top",
}}
dataSourceSettings={{
id: "Name",
parentId: "ReportingPerson",
dataManager: items,
}}
//Sets the default properties of the node.
getNodeDefaults={(obj: NodeModel) => {
obj.shape = {
type: "Text",
content: (
obj.data as {
Name: "string";
}
).Name,
};
obj.style = {
fill: "None",
strokeColor: "none",
strokeWidth: 2,
bold: true,
color: "white",
};
obj.width = 50;
obj.height = 40;
obj.borderColor = "white";
obj.backgroundColor = "#6BA5D7";
obj.borderWidth = 1;
(obj.shape as TextModel).margin = {
left: 25,
right: 25,
top: 25,
bottom: 25,
};
return obj;
}}
//Sets the default properties of the connector.
getConnectorDefaults={(connector: ConnectorModel, diagram: Diagram) => {
connector.style = {
strokeColor: "#6BA5D7",
strokeWidth: 2,
};
connector.targetDecorator.style.fill = "#6BA5D7";
connector.targetDecorator.style.strokeColor = "#6BA5D7";
connector.type = "Orthogonal";
return connector;
}}
>
<Inject services={[DataBinding, HierarchicalTree]} />
</DiagramComponent>
);
}
const root = ReactDOM.createRoot(document.getElementById("diagram"));
root.render(<App />);
Expand and collapse
Diagram allows to expand/collapse the subtrees of a layout. The node’s isExpanded property allows you to expand/collapse its children. The following code example shows how to expand/collapse the children of a node.
import * as React from "react";
import * as ReactDOM from "react-dom";
import { DiagramComponent, Inject, HierarchicalTree, } from "@syncfusion/ej2-react-diagrams";
//Initializes data source
//let items: DataManager = new DataManager(data as JSON[], new Query().take(7));
let diagramInstance;
let nodes = [
{
id: "node1",
width: 140,
height: 50,
isExpanded: false,
annotations: [
{
content: "node1",
},
],
expandIcon: {
shape: "Plus",
},
collapseIcon: {
shape: "Minus",
},
},
{
id: "node2",
width: 140,
height: 50,
annotations: [
{
content: "node2",
},
],
},
{
id: "node3",
width: 140,
height: 50,
annotations: [
{
content: "node3",
},
],
},
];
let connectors = [
{
// Name of the connector
id: "connector1",
// ID of the source and target nodes
sourceID: "node1",
targetID: "node2",
},
{
id: "connector2",
// ID of the source and target nodes
sourceID: "node2",
targetID: "node3",
},
];
function App() {
return (<DiagramComponent id="container" ref={(diagram) => (diagramInstance = diagram)} width={"1250px"} height={"590px"} nodes={nodes} connectors={connectors} snapSettings={{
constraints: 0,
}} created={(args) => {
diagramInstance.fitToPage();
}} layout={{
// set enableAnimation as true
enableAnimation: true,
type: "HierarchicalTree",
margin: {
top: 20,
},
getLayoutInfo: (node, tree) => {
if (!tree.hasSubTree) {
tree.orientation = "Vertical";
tree.type = "Alternate";
}
},
}}
//Sets the default properties for nodes and connectors
getNodeDefaults={(obj) => {
obj.shape = {
type: "Text",
style: {
color: "white",
},
};
obj.style = {
fill: "#6BA5D7",
strokeColor: "none",
strokeWidth: 2,
};
obj.borderColor = "white";
obj.backgroundColor = "#6BA5D7";
obj.borderWidth = 1;
obj.shape.margin = {
left: 5,
right: 5,
top: 5,
bottom: 5,
};
return obj;
}} getConnectorDefaults={(connector, diagram) => {
connector.style = {
strokeColor: "#6BA5D7",
strokeWidth: 2,
};
connector.targetDecorator.style.fill = "#6BA5D7";
connector.targetDecorator.style.strokeColor = "#6BA5D7";
connector.type = "Orthogonal";
return connector;
}}>
<Inject services={[HierarchicalTree]}/>
</DiagramComponent>);
}
const root = ReactDOM.createRoot(document.getElementById("diagram"));
root.render(<App />);
import * as React from "react";
import * as ReactDOM from "react-dom";
import {
Diagram,
DiagramComponent,
Inject,
ConnectorModel,
Node,
SelectorConstraints,
HierarchicalTree,
} from "@syncfusion/ej2-react-diagrams";
import { NodeModel } from "@syncfusion/ej2-react-diagrams";
//Initializes data source
//let items: DataManager = new DataManager(data as JSON[], new Query().take(7));
let diagramInstance: Diagram;
let nodes: NodeModel[] = [
{
id: "node1",
width: 140,
height: 50,
isExpanded: false,
annotations: [
{
content: "node1",
},
],
expandIcon: {
shape: "Plus",
},
collapseIcon: {
shape: "Minus",
},
},
{
id: "node2",
width: 140,
height: 50,
annotations: [
{
content: "node2",
},
],
},
{
id: "node3",
width: 140,
height: 50,
annotations: [
{
content: "node3",
},
],
},
];
let connectors: ConnectorModel[] = [
{
// Name of the connector
id: "connector1",
// ID of the source and target nodes
sourceID: "node1",
targetID: "node2",
},
{
id: "connector2",
// ID of the source and target nodes
sourceID: "node2",
targetID: "node3",
},
];
function App() {
return (
<DiagramComponent
id="container"
ref={(diagram) => (diagramInstance = diagram)}
width={"1250px"}
height={"590px"}
nodes={nodes}
connectors={connectors}
snapSettings={{
constraints: 0,
}}
created={(args) => {
diagramInstance.fitToPage();
}}
layout={{
// set enableAnimation as true
enableAnimation: true,
type: "HierarchicalTree",
margin: {
top: 20,
}, // define the getLayoutInfo
getLayoutInfo: (node: Node, tree: TreeInfo) => {
if (!tree.hasSubTree) {
tree.orientation = "Vertical";
tree.type = "Alternate";
}
},
}}
//Sets the default properties for nodes and connectors
getNodeDefaults={(obj: Node) => {
obj.shape = {
type: "Text",
style: {
color: "white",
},
};
obj.style = {
fill: "#6BA5D7",
strokeColor: "none",
strokeWidth: 2,
};
obj.borderColor = "white";
obj.backgroundColor = "#6BA5D7";
obj.borderWidth = 1;
(obj.shape as TextModel).margin = {
left: 5,
right: 5,
top: 5,
bottom: 5,
};
return obj;
}}
getConnectorDefaults={(connector: ConnectorModel, diagram: Diagram) => {
connector.style = {
strokeColor: "#6BA5D7",
strokeWidth: 2,
};
connector.targetDecorator.style.fill = "#6BA5D7";
connector.targetDecorator.style.strokeColor = "#6BA5D7";
connector.type = "Orthogonal";
return connector;
}}
>
<Inject services={[HierarchicalTree]} />
</DiagramComponent>
);
}
const root = ReactDOM.createRoot(document.getElementById("diagram"));
root.render(<App />);
In the previous example, while expanding/collapsing a node, it is set as fixed node in order to prevent it from repositioning.
Refresh layout
Diagram allows to refresh the layout at runtime. To refresh the layout, refer to Refresh layout.
setNodeTemplate
The setNodeTemplate function is provided for the purpose of customizing nodes. It will be called for each node on node initialization. In this function, the node style and its properties can be customized and can bind the custom JSON with node.
import * as React from "react";
import * as ReactDOM from "react-dom";
import { DiagramComponent, Inject, HierarchicalTree, DataBinding, Rect, } from "@syncfusion/ej2-react-diagrams";
import { DataManager, Query } from "@syncfusion/ej2-data";
//Initializes data source
let data = [
{
Name: "Steve-Ceo",
},
{
Name: "Kevin-Manager",
ReportingPerson: "Steve-Ceo",
color: "darkcyan",
},
{
Name: "Peter-Manager",
ReportingPerson: "Steve-Ceo",
color: "white",
},
{
Name: "John- Manager",
ReportingPerson: "Peter-Manager",
color: "darkcyan",
},
{
Name: "Mary-CSE ",
ReportingPerson: "Peter-Manager",
color: "white",
},
{
Name: "Jim-CSE ",
ReportingPerson: "Kevin-Manager",
color: "darkcyan",
},
{
Name: "Martin-CSE",
ReportingPerson: "Kevin-Manager",
color: "white",
},
];
let items = new DataManager(data, new Query().take(7));
function App() {
return (<DiagramComponent id="container" width={"100%"} height={"550px"} layout={{
type: "HierarchicalTree",
bounds: new Rect(0, 0, 500, 500),
horizontalSpacing: 25,
verticalSpacing: 30,
horizontalAlignment: "Left",
verticalAlignment: "Top",
}} dataSourceSettings={{
id: "Name",
parentId: "ReportingPerson",
dataManager: items,
}} getNodeDefaults={(obj) => {
obj.shape = {
type: "Text",
content: obj.data.Name,
};
obj.style = {
fill: "None",
strokeColor: "none",
strokeWidth: 2,
bold: true,
color: "white",
};
obj.width = 50;
obj.height = 40;
obj.borderColor = "white";
obj.backgroundColor = "#6BA5D7";
obj.borderWidth = 1;
obj.shape.margin = {
left: 25,
right: 25,
top: 25,
bottom: 25,
};
return obj;
}} getConnectorDefaults={(connector, diagram) => {
connector.style = {
strokeColor: "#6BA5D7",
strokeWidth: 2,
};
connector.targetDecorator.style.fill = "#6BA5D7";
connector.targetDecorator.style.strokeColor = "#6BA5D7";
connector.targetDecorator.shape = "None";
connector.type = "Orthogonal";
return connector;
}} setNodeTemplate={function (obj, diagram) {
obj.borderColor = obj.data.color;
}}>
<Inject services={[DataBinding, HierarchicalTree]}/>
</DiagramComponent>);
}
const root = ReactDOM.createRoot(document.getElementById("diagram"));
root.render(<App />);
import * as React from "react";
import * as ReactDOM from "react-dom";
import {
Diagram,
DiagramComponent,
Inject,
ConnectorModel,
NodeModel,
DiagramConstraints,
HierarchicalTree,
TextModel,
DataBinding,
Rect,
} from "@syncfusion/ej2-react-diagrams";
import { DataManager, Query } from "@syncfusion/ej2-data";
//Initializes data source
let data: object[] = [
{
Name: "Steve-Ceo",
},
{
Name: "Kevin-Manager",
ReportingPerson: "Steve-Ceo",
color: "darkcyan",
},
{
Name: "Peter-Manager",
ReportingPerson: "Steve-Ceo",
color: "white",
},
{
Name: "John- Manager",
ReportingPerson: "Peter-Manager",
color: "darkcyan",
},
{
Name: "Mary-CSE ",
ReportingPerson: "Peter-Manager",
color: "white",
},
{
Name: "Jim-CSE ",
ReportingPerson: "Kevin-Manager",
color: "darkcyan",
},
{
Name: "Martin-CSE",
ReportingPerson: "Kevin-Manager",
color: "white",
},
];
let items: DataManager = new DataManager(data as JSON[], new Query().take(7));
function App() {
return (
<DiagramComponent
id="container"
width={"100%"}
height={"550px"}
layout={{
type: "HierarchicalTree",
bounds: new Rect(0, 0, 500, 500),
horizontalSpacing: 25,
verticalSpacing: 30,
horizontalAlignment: "Left",
verticalAlignment: "Top",
}}
dataSourceSettings={{
id: "Name",
parentId: "ReportingPerson",
dataManager: items,
}}
getNodeDefaults={(obj: NodeModel) => {
obj.shape = {
type: "Text",
content: (
obj.data as {
Name: "string";
}
).Name,
};
obj.style = {
fill: "None",
strokeColor: "none",
strokeWidth: 2,
bold: true,
color: "white",
};
obj.width = 50;
obj.height = 40;
obj.borderColor = "white";
obj.backgroundColor = "#6BA5D7";
obj.borderWidth = 1;
(obj.shape as TextModel).margin = {
left: 25,
right: 25,
top: 25,
bottom: 25,
};
return obj;
}}
getConnectorDefaults={(connector: ConnectorModel, diagram: Diagram) => {
connector.style = {
strokeColor: "#6BA5D7",
strokeWidth: 2,
};
connector.targetDecorator.style.fill = "#6BA5D7";
connector.targetDecorator.style.strokeColor = "#6BA5D7";
connector.targetDecorator.shape = "None";
connector.type = "Orthogonal";
return connector;
}}
setNodeTemplate={function (obj: NodeModel, diagram: Diagram) {
obj.borderColor = (
obj.data as {
color: "string";
}
).color;
}}
>
<Inject services={[DataBinding, HierarchicalTree]} />
</DiagramComponent>
);
}
const root = ReactDOM.createRoot(document.getElementById("diagram"));
root.render(<App />);