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.

173 lines
5.5 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
11 years ago
11 years ago
  1. vis.js history
  2. http://visjs.org
  3. ## 2014-03-27, version 0.7.1
  4. ### Graph
  5. - fixed edge color bug.
  6. - fixed select event bug.
  7. - clarified docs, stressing importance of css inclusion for correct display of navigation an manipulation icons.
  8. - improved and expanded playing with physics (configurePhysics option).
  9. - added highlights to navigation icons if the corresponding key is pressed.
  10. - added freezeForStabilization option to improve stabilization with cached positions.
  11. ## 2014-03-07, version 0.7.0
  12. ### Graph
  13. - changed navigation CSS. Icons are now always correctly positioned.
  14. - added stabilizationIterations option to graph.
  15. - added storePosition() method to save the XY positions of nodes in the DataSet.
  16. - separated allowedToMove into allowedToMoveX and allowedToMoveY. This is required for initializing nodes from hierarchical layouts after storePosition().
  17. - added color options for the edges.
  18. ## 2014-03-06, version 0.6.1
  19. ### Graph
  20. - Bugfix graphviz examples.
  21. - Bugfix labels position for smooth curves.
  22. - Tweaked graphviz example physics.
  23. - Updated physics documentation to stress importance of configurePhysics.
  24. ### Timeline
  25. - Fixed a bug with options `margin.axis` and `margin.item` being ignored when setting them to zero.
  26. - Some clarifications in the documentation.
  27. ## 2014-03-05, version 0.6.0
  28. ### Graph
  29. - Added Physics Configuration option. This makes tweaking the physics system to suit your needs easier.
  30. - Click and doubleClick events.
  31. - Initial zoom bugfix.
  32. - Directions for Hierarchical layout.
  33. - Refactoring and bugfixes.
  34. ## 2014-02-20, version 0.5.1
  35. - Fixed broken bower module.
  36. ## 2014-02-20, version 0.5.0
  37. ### Timeline
  38. - Editable Items: drag items, add new items, update items, and remove items.
  39. - Implemented options `selectable`, `editable`.
  40. - Added events `timechange` and `timechanged` when dragging the custom time bar.
  41. - Multiple items can be selected using ctrl+click or shift+click.
  42. - Implemented functions `setWindow(start, end)` and `getWindow()`.
  43. - Fixed scroll to zoom not working on IE in standards mode.
  44. ### Graph
  45. - Editable nodes and edges: create, update, and remove them.
  46. - Support for smooth, curved edges (on by default).
  47. - Performance improvements.
  48. - Fixed scroll to zoom not working on IE in standards mode.
  49. - Added hierarchical layout option.
  50. - Overhauled physics system, now using Barnes-Hut simulation by default. Great performance gains.
  51. - Modified clustering system to give better results.
  52. - Adaptive performance system to increase visual performance (60fps target).
  53. ### DataSet
  54. - Renamed functions `subscribe` and `unsubscribe` to `on` and `off` respectively.
  55. ## 2014-01-31, version 0.4.0
  56. ### Timeline
  57. - Implemented functions `on` and `off` to create event listeners for events
  58. `rangechange`, `rangechanged`, and `select`.
  59. - Implemented function `select` to get and set the selected items.
  60. - Items can be selected by clicking them, muti-select by holding them.
  61. - Fixed non working `start` and `end` options.
  62. ### Graph
  63. - Fixed longstanding bug in the force calculation, increasing simulation
  64. stability and fluidity.
  65. - Reworked the calculation of the Graph, increasing performance for larger
  66. datasets (up to 10x!).
  67. - Support for automatic clustering in Graph to handle large (>50000) datasets
  68. without losing performance.
  69. - Added automatic initial zooming to Graph, to more easily view large amounts
  70. of data.
  71. - Added local declustering to Graph, freezing the simulation of nodes outside
  72. of the cluster.
  73. - Added support for key-bindings by including mouseTrap in Graph.
  74. - Added navigation controls.
  75. - Added keyboard navigation.
  76. - Implemented functions `on` and `off` to create event listeners for event
  77. `select`.
  78. ## 2014-01-14, version 0.3.0
  79. - Moved the generated library to folder `./dist`
  80. - Css stylesheet must be loaded explicitly now.
  81. - Implemented options `showCurrentTime` and `showCustomTime`. Thanks fi0dor.
  82. - Implemented touch support for Timeline.
  83. - Fixed broken Timeline options `min` and `max`.
  84. - Fixed not being able to load vis.js in node.js.
  85. ## 2013-09-20, version 0.2.0
  86. - Implemented full touch support for Graph.
  87. - Fixed initial empty range in the Timeline in case of a single item.
  88. - Fixed field `className` not working for items.
  89. ## 2013-06-20, version 0.1.0
  90. - Added support for DataSet to Graph. Graph now uses an id based set of nodes
  91. and edges instead of a row based array internally. Methods getSelection and
  92. setSelection of Graph now accept a list with ids instead of rows.
  93. - Graph is now robust against edges pointing to non-existing nodes, which
  94. can occur easily while dynamically adding/removing nodes and edges.
  95. - Implemented basic support for groups in the Timeline.
  96. - Added documentation on DataSet and DataView.
  97. - Fixed selection of nodes in a Graph when the containing web page is scrolled.
  98. - Improved date conversion.
  99. - Renamed DataSet option `fieldTypes` to `convert`.
  100. - Renamed function `vis.util.cast` to `vis.util.convert`.
  101. ## 2013-06-07, version 0.0.9
  102. - First working version of the Graph imported from the old library.
  103. - Documentation added for both Timeline and Graph.
  104. ## 2013-05-03, version 0.0.8
  105. - Performance improvements: only visible items are rendered.
  106. - Minor bug fixes and improvements.
  107. ## 2013-04-25, version 0.0.7
  108. - Sanitized the published packages on npm and bower.
  109. ## 2013-04-25, version 0.0.6
  110. - Css is now packaged in the javascript file, and automatically loaded.
  111. - The library uses node style dependency management for modules now, used
  112. with Browserify.
  113. ## 2013-04-16, version 0.0.5
  114. - First working version of the Timeline.
  115. - Website created.