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.

116 lines
3.7 KiB

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