I am using GetOrgChart to show more than 2500 nodes and i am facing lots of problem which i've menstioned below.
- Chart is not in center.
- Since on Page load it looks like a thin line,forcefully i have to press zoom in button to see chart.
- If i zoom in/out using mouse scroll than this thin line will disapeared and not found again.
- If i search a node in search box, chart will zoom out and it again become a thin line i have to zoom in again to see the chart.
- After search, identified node is not blinking.
see below image
Below is my code
<!DOCTYPE html>
<html>
<head>
<title>OrgChart | First Look</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<script src="getorgchart.js"></script>
<link href="getorgchart.css" rel="stylesheet" />
<style type="text/css">
html, body {
margin: 0px;
padding: 0px;
width: 100%;
height: 100%;
overflow: hidden;
}
#people {
width: 100%;
height: 100%;
}
</style>
</head>
<body>
<div id="people"></div>
<script type="text/javascript">
var peopleElement = document.getElementById("people");
var orgChart = new getOrgChart(peopleElement, {
primaryFields: ["name", "title"],
dataSource: myData
});
</script>
</body>
</html>

You can add this option for make a beautiful view.