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.

54 lines
1.6 KiB

11 years ago
  1. vis.js history
  2. http://visjs.org
  3. ## (not yet released), version 0.2.0
  4. - Implemented full touch support for Graph.
  5. - Fixed initial empty range in the Timeline in case of a single item.
  6. - Fixed field `className` not working for items.
  7. ## 2013-06-20, version 0.1.0
  8. - Added support for DataSet to Graph. Graph now uses an id based set of nodes
  9. and edges instead of a row based array internally. Methods getSelection and
  10. setSelection of Graph now accept a list with ids instead of rows.
  11. - Graph is now robust against edges pointing to non-existing nodes, which
  12. can occur easily while dynamically adding/removing nodes and edges.
  13. - Implemented basic support for groups in the Timeline.
  14. - Added documentation on DataSet and DataView.
  15. - Fixed selection of nodes in a Graph when the containing web page is scrolled.
  16. - Improved date conversion.
  17. - Renamed DataSet option `fieldTypes` to `convert`.
  18. - Renamed function `vis.util.cast` to `vis.util.convert`.
  19. ## 2013-06-07, version 0.0.9
  20. - First working version of the Graph imported from the old library.
  21. - Documentation added for both Timeline and Graph.
  22. ## 2013-05-03, version 0.0.8
  23. - Performance improvements: only visible items are rendered.
  24. - Minor bug fixes and improvements.
  25. ## 2013-04-25, version 0.0.7
  26. - Sanitized the published packages on npm and bower.
  27. ## 2013-04-25, version 0.0.6
  28. - Css is now packaged in the javascript file, and automatically loaded.
  29. - The library uses node style dependency management for modules now, used
  30. with Browserify.
  31. ## 2013-04-16, version 0.0.5
  32. - First working version of the Timeline.
  33. - Website created.