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.

85 lines
2.0 KiB

  1. <!DOCTYPE HTML>
  2. <html>
  3. <head>
  4. <title>Timeline | Group example</title>
  5. <style>
  6. body, html {
  7. font-family: arial, sans-serif;
  8. font-size: 11pt;
  9. }
  10. #visualization {
  11. box-sizing: border-box;
  12. width: 100%;
  13. height: 300px;
  14. }
  15. </style>
  16. <!-- note: moment.js must be loaded before vis.js, else vis.js uses its embedded version of moment.js -->
  17. <script src="http://cdnjs.cloudflare.com/ajax/libs/moment.js/2.3.1/moment.min.js"></script>
  18. <script src="../vis.js"></script>
  19. </head>
  20. <body>
  21. <div>
  22. <label for="orientation">Orientation</label>
  23. <select id="orientation">
  24. <option value="top">top</option>
  25. <option value="bottom" selected>bottom</option>
  26. </select>
  27. </div>
  28. <script>
  29. var orientation = document.getElementById('orientation');
  30. orientation.onchange = function () {
  31. timeline.setOptions({
  32. orientation: orientation.value
  33. });
  34. };
  35. </script>
  36. <br>
  37. <div id="visualization"></div>
  38. <script>
  39. var now = moment().minutes(0).seconds(0).milliseconds(0);
  40. var groupCount = 3;
  41. var itemCount = 20;
  42. // create a data set with groups
  43. var names = ['John', 'Alston', 'Lee', 'Grant'];
  44. var groups = new vis.DataSet();
  45. for (var g = 0; g < groupCount; g++) {
  46. groups.add({id: g, content: names[g]});
  47. }
  48. // create a dataset with items
  49. var items = new vis.DataSet();
  50. for (var i = 0; i < itemCount; i++) {
  51. var start = now.clone().add('hours', Math.random() * 200);
  52. var group = Math.floor(Math.random() * groupCount);
  53. items.add({
  54. id: i,
  55. group: group,
  56. content: 'item ' + i +
  57. ' <span style="color:#97B0F8;">(' + names[group] + ')</span>',
  58. start: start,
  59. type: 'box'
  60. });
  61. }
  62. // create visualization
  63. var container = document.getElementById('visualization');
  64. var options = {
  65. //height: 200,
  66. groupOrder: 'content'
  67. };
  68. var timeline = new vis.Timeline(container);
  69. timeline.setOptions(options);
  70. timeline.setGroups(groups);
  71. timeline.setItems(items);
  72. </script>
  73. </body>
  74. </html>