Skip to content

Releases: dabeng/OrgChart

2.0.3

27 Jul 09:47
Compare
Choose a tag to compare

Thanks a lot for the great contribution of @NielsNet. We have a clean and clear OrgChart prototype without ES6 syntax.

2.0.2

16 Jul 23:07
Compare
Choose a tag to compare

Since this version, plugin orgchart allows users to use option "nodeTemplate" to build up any complex node structure.

2.0.1

12 Jul 14:51
Compare
Choose a tag to compare

Since version 2.0.1, users are allowed to Enable and Disable Zoom and Pan with setOptions() method.

2.0.0

09 Jul 01:43
Compare
Choose a tag to compare

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

04 Jul 02:59
Compare
Choose a tag to compare

<a name"1.5.1">

1.5.1 (2017-07-04)

Bug Fixes

  • events: trigger init event on orgchart div (4f5ed1e4)

v1.5.0

03 Jul 14:16
Compare
Choose a tag to compare

<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

03 Jul 09:32
Compare
Choose a tag to compare

<a name"1.4.0">

1.4.0 (2017-07-03)

Features

v1.3.9

29 Jun 08:47
Compare
Choose a tag to compare

<a name"1.3.9">

1.3.9 (2017-06-29)

Features

  • CI: introduce semantic-release (53e3459a)

1.3.6

04 Mar 13:15
Compare
Choose a tag to compare

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

30 Jan 02:32
Compare
Choose a tag to compare

Append an option "collapsed" which allows uses to collapse some nodes by default.