Build organizational chart app with BALKAN OrgChart JS JavaScript library. OrgChart JS is a simple, flexible and highly customizable organization chart plugin for presenting the structure of your organization and the relationships in an elegant way.
Option 1 - standalone build
Option 2 - NPM
npm i @balkangraph/orgchart.js
Option 3 - Bower
bower install orgchart.js
<script src="https://balkan.app/js/orgchart.js"></script>
<div id="tree"/>
<script>
var chart = new OrgChart(document.getElementById("tree"), {
nodeBinding: {
field_0: "name"
},
nodes: [
{ id: 1, name: "Amber McKenzie" },
{ id: 2, pid: 1, name: "Ava Field" },
{ id: 3, pid: 1, name: "Peter Stevens" }
]
});
</script>