Assistant - OrgChart JS
by Serhii Matrunchyk
HTML
<script src="//balkangraph.com/js/latest/OrgChart.js"></script>
<div id="tree"></div>
CSS
html, body {
margin: 0px;
padding: 0px;
width: 100%;
height: 100%;
overflow: hidden;
text-align: center;
font-family: Helvetica;
}
#tree {
width: 100%;
height: 100%;
position: relative;
}
JavaScript
console.log(OrgChart.templates)
var chart = new OrgChart(document.getElementById("tree"), {
mouseScrool: OrgChart.action.none,
nodeBinding: {
field_0: "name",
field_1: "title",
img_0: "img"
},
nodes: [{
id: 1,
tags: ["ceo"],
name: "Denny Curtis",
title: "CEO",
img: "https://cdn.balkan.app/shared/2.jpg"
},
{
id: 2,
pid: 1,
name: "Ashley Barnett",
title: "Sales Manager",
img: "https://cdn.balkan.app/shared/3.jpg"
},
{
id: 3,
name: "Caden Ellison",
tags: ["Management"],
title: "Dev Manager",
img: "https://cdn.balkan.app/shared/4.jpg"
},
{
id: 4,
pid: 2,
name: "Elliot Patel",
title: "Sales",
img: "https://cdn.balkan.app/shared/5.jpg"
},
{
id: 5,
pid: 2,
name: "Lynn Hussain",
title: "Sales",
img: "https://cdn.balkan.app/shared/6.jpg"
},
{
id: 6,
pid: 3,
name: "Tanner May",
title: "Developer",
img: "https://cdn.balkan.app/shared/7.jpg"
},
{
id: 7,
pid: 3,
name: "Fran Parsons",
title: "Developer",
img: "https://cdn.balkan.app/shared/8.jpg"
},
{
id: 8,
pid: 2,
name: "Rudy Griffiths",
title: "Assistant",
img: "https://cdn.balkan.app/shared/9.jpg"
},
{
id: 9,
pid: 2,
name: "Eli Palmer",
title: "Assistant",
img: "https://cdn.balkan.app/shared/10.jpg"
},
{
id: 10,
pid: 2,
name: "Kuku Kaka",
title: "Assistant",
img: "https://cdn.balkan.app/shared/11.jpg"
},
{
id: 11,
...