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.

52 lines
1.5 KiB

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