vis.js is a dynamic, browser-based visualization library
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

235 lines
7.2 KiB

10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
11 years ago
  1. # vis.js history
  2. http://visjs.org
  3. ## not yet released, version 0.8.0
  4. ### Timeline
  5. - Large refactoring of the Timeline, simplifying the code.
  6. - Great performance improvements.
  7. - Improved layout of box-items inside groups.
  8. - Items can now be dragged from one group to another.
  9. - Implemented option `stack` to enable/disable stacking of items.
  10. - Implemented function `fit`, which sets the Timeline window such that it fits
  11. all items.
  12. - Option `editable` can now be used to enable/disable individual manipulation
  13. actions (`add`, `updateTime`, `updateGroup`, `remove`).
  14. - Function `setWindow` now accepts an object with properties `start` and `end`.
  15. - Fixed option `autoResize` forcing a repaint of the Timeline with every check
  16. rather than when the Timeline is actually resized.
  17. - Fixed `select` event fired repeatedly when clicking an empty place on the
  18. Timeline, deselecting selected items).
  19. - Fixed initial visible window in case items exceed `zoomMax`. Thanks @Remper.
  20. - Fixed an offset in newly created items when using groups.
  21. - Fixed height of a group not reckoning with the height of the group label.
  22. - Option `order` is now deprecated. This was needed for performance improvements.
  23. - More examples added.
  24. - Minor bug fixes.
  25. ### Graph
  26. - added recalculate hierarchical layout to update node event.
  27. - added arrowScaleFactor to scale the arrows on the edges.
  28. ### DataSet
  29. - A DataSet can now be constructed with initial data, like
  30. `new DataSet(data, options)`.
  31. ## 2014-04-18, version 0.7.4
  32. ### Graph
  33. - fixed IE9 bug.
  34. - style fixes.
  35. - minor bug fixes.
  36. ## 2014-04-16, version 0.7.3
  37. ### Graph
  38. - fixed color bug.
  39. - added pull requests from kannonboy and vierja: tooltip styling, label fill color
  40. ## 2014-04-09, version 0.7.2
  41. ### Graph
  42. - fixed edge select bug.
  43. - fixed zoom bug on empty initialization.
  44. ## 2014-03-27, version 0.7.1
  45. ### Graph
  46. - fixed edge color bug.
  47. - fixed select event bug.
  48. - clarified docs, stressing importance of css inclusion for correct display of navigation an manipulation icons.
  49. - improved and expanded playing with physics (configurePhysics option).
  50. - added highlights to navigation icons if the corresponding key is pressed.
  51. - added freezeForStabilization option to improve stabilization with cached positions.
  52. ## 2014-03-07, version 0.7.0
  53. ### Graph
  54. - changed navigation CSS. Icons are now always correctly positioned.
  55. - added stabilizationIterations option to graph.
  56. - added storePosition() method to save the XY positions of nodes in the DataSet.
  57. - separated allowedToMove into allowedToMoveX and allowedToMoveY. This is required for initializing nodes from hierarchical layouts after storePosition().
  58. - added color options for the edges.
  59. ## 2014-03-06, version 0.6.1
  60. ### Graph
  61. - Bugfix graphviz examples.
  62. - Bugfix labels position for smooth curves.
  63. - Tweaked graphviz example physics.
  64. - Updated physics documentation to stress importance of configurePhysics.
  65. ### Timeline
  66. - Fixed a bug with options `margin.axis` and `margin.item` being ignored when setting them to zero.
  67. - Some clarifications in the documentation.
  68. ## 2014-03-05, version 0.6.0
  69. ### Graph
  70. - Added Physics Configuration option. This makes tweaking the physics system to suit your needs easier.
  71. - Click and doubleClick events.
  72. - Initial zoom bugfix.
  73. - Directions for Hierarchical layout.
  74. - Refactoring and bugfixes.
  75. ## 2014-02-20, version 0.5.1
  76. - Fixed broken bower module.
  77. ## 2014-02-20, version 0.5.0
  78. ### Timeline
  79. - Editable Items: drag items, add new items, update items, and remove items.
  80. - Implemented options `selectable`, `editable`.
  81. - Added events `timechange` and `timechanged` when dragging the custom time bar.
  82. - Multiple items can be selected using ctrl+click or shift+click.
  83. - Implemented functions `setWindow(start, end)` and `getWindow()`.
  84. - Fixed scroll to zoom not working on IE in standards mode.
  85. ### Graph
  86. - Editable nodes and edges: create, update, and remove them.
  87. - Support for smooth, curved edges (on by default).
  88. - Performance improvements.
  89. - Fixed scroll to zoom not working on IE in standards mode.
  90. - Added hierarchical layout option.
  91. - Overhauled physics system, now using Barnes-Hut simulation by default. Great performance gains.
  92. - Modified clustering system to give better results.
  93. - Adaptive performance system to increase visual performance (60fps target).
  94. ### DataSet
  95. - Renamed functions `subscribe` and `unsubscribe` to `on` and `off` respectively.
  96. ## 2014-01-31, version 0.4.0
  97. ### Timeline
  98. - Implemented functions `on` and `off` to create event listeners for events
  99. `rangechange`, `rangechanged`, and `select`.
  100. - Implemented function `select` to get and set the selected items.
  101. - Items can be selected by clicking them, muti-select by holding them.
  102. - Fixed non working `start` and `end` options.
  103. ### Graph
  104. - Fixed longstanding bug in the force calculation, increasing simulation
  105. stability and fluidity.
  106. - Reworked the calculation of the Graph, increasing performance for larger
  107. datasets (up to 10x!).
  108. - Support for automatic clustering in Graph to handle large (>50000) datasets
  109. without losing performance.
  110. - Added automatic initial zooming to Graph, to more easily view large amounts
  111. of data.
  112. - Added local declustering to Graph, freezing the simulation of nodes outside
  113. of the cluster.
  114. - Added support for key-bindings by including mouseTrap in Graph.
  115. - Added navigation controls.
  116. - Added keyboard navigation.
  117. - Implemented functions `on` and `off` to create event listeners for event
  118. `select`.
  119. ## 2014-01-14, version 0.3.0
  120. - Moved the generated library to folder `./dist`
  121. - Css stylesheet must be loaded explicitly now.
  122. - Implemented options `showCurrentTime` and `showCustomTime`. Thanks @fi0dor.
  123. - Implemented touch support for Timeline.
  124. - Fixed broken Timeline options `min` and `max`.
  125. - Fixed not being able to load vis.js in node.js.
  126. ## 2013-09-20, version 0.2.0
  127. - Implemented full touch support for Graph.
  128. - Fixed initial empty range in the Timeline in case of a single item.
  129. - Fixed field `className` not working for items.
  130. ## 2013-06-20, version 0.1.0
  131. - Added support for DataSet to Graph. Graph now uses an id based set of nodes
  132. and edges instead of a row based array internally. Methods getSelection and
  133. setSelection of Graph now accept a list with ids instead of rows.
  134. - Graph is now robust against edges pointing to non-existing nodes, which
  135. can occur easily while dynamically adding/removing nodes and edges.
  136. - Implemented basic support for groups in the Timeline.
  137. - Added documentation on DataSet and DataView.
  138. - Fixed selection of nodes in a Graph when the containing web page is scrolled.
  139. - Improved date conversion.
  140. - Renamed DataSet option `fieldTypes` to `convert`.
  141. - Renamed function `vis.util.cast` to `vis.util.convert`.
  142. ## 2013-06-07, version 0.0.9
  143. - First working version of the Graph imported from the old library.
  144. - Documentation added for both Timeline and Graph.
  145. ## 2013-05-03, version 0.0.8
  146. - Performance improvements: only visible items are rendered.
  147. - Minor bug fixes and improvements.
  148. ## 2013-04-25, version 0.0.7
  149. - Sanitized the published packages on npm and bower.
  150. ## 2013-04-25, version 0.0.6
  151. - Css is now packaged in the javascript file, and automatically loaded.
  152. - The library uses node style dependency management for modules now, used
  153. with Browserify.
  154. ## 2013-04-16, version 0.0.5
  155. - First working version of the Timeline.
  156. - Website created.