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.

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