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.

102 lines
3.1 KiB

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