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.

64 lines
1.9 KiB

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