Releases: dabeng/OrgChart
Releases · dabeng/OrgChart
2.0.3
Thanks a lot for the great contribution of @NielsNet. We have a clean and clear OrgChart prototype without ES6 syntax.
2.0.2
Since this version, plugin orgchart allows users to use option "nodeTemplate" to build up any complex node structure.
2.0.1
Since version 2.0.1, users are allowed to Enable and Disable Zoom and Pan with setOptions() method.
2.0.0
From this version, users are encouraged to create the organization chart with the following code snippets:
var oc = $('#chart-container').orgchart({ ... }); // variable oc is an instance of class OrgChart
var hierarchy = oc.getHierarchy();
oc.init({ ... }); // re-initialize the orgchart with new options
v1.5.1
<a name"1.5.1">
1.5.1 (2017-07-04)
Bug Fixes
- events: trigger init event on orgchart div (4f5ed1e4)
v1.5.0
<a name"1.5.0">
1.5.0 (2017-07-03)
Features
- callback and events: add init event and initCompleted callback (24c3d761)
v1.4.0
<a name"1.4.0">
1.4.0 (2017-07-03)
Features
v1.3.9
<a name"1.3.9">
1.3.9 (2017-06-29)
Features
- CI: introduce semantic-release (53e3459a)
1.3.6
New options zoominLimit and zoomoutLimit are added. With the help of them, users can set zoom-in/zoom-out limit. Their default values are 7 and 0.5.
1.3.5
Append an option "collapsed" which allows uses to collapse some nodes by default.