orgchart.js
Version:
organization chart plugin based on ES6
24 lines (21 loc) • 741 B
HTML
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Organization Chart Plugin</title>
<link rel="icon" type="image/x-icon" href="../img/logo.jpg">
<link rel="stylesheet" href="../css/vendor/font-awesome.min.css">
<link rel="stylesheet" href="../css/orgchart.min.css">
<link rel="stylesheet" href="../css/style.css">
<style type="text/css">
#chart-container { height: 620px; }
.orgchart { background: white; }
</style>
</head>
<body>
<div id="chart-container"></div>
<script type="text/javascript" src="bundle.js"></script>
</body>
</html>