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.

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