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.

59 lines
2.1 KiB

  1. <!DOCTYPE HTML>
  2. <html>
  3. <head>
  4. <title>Timeline | Hiding times demo</title>
  5. <style type="text/css">
  6. body, html {
  7. font-family: sans-serif;
  8. }
  9. </style>
  10. <script src="../../dist/vis.js"></script>
  11. <link href="../../dist/vis.css" rel="stylesheet" type="text/css"/>
  12. </head>
  13. <body>
  14. <div id="visualization"></div>
  15. <script type="text/javascript">
  16. // DOM element where the Timeline will be attached
  17. var container = document.getElementById('visualization');
  18. // Create a DataSet (allows two way data-binding)
  19. var items = new vis.DataSet([
  20. {id: 1, content: 'item 1', start: '2014-04-19'},
  21. {id: 2, content: 'item 2', start: '2014-04-21'},
  22. {id: 3, content: 'item 3', start: '2014-04-18'},
  23. {id: 4, content: 'item 4', start: '2014-04-16', end: '2014-04-24'},
  24. {id: 5, content: 'item 5', start: '2014-04-26 12:00:00'},
  25. {id: 6, content: 'item 6', start: '2014-04-27', type: 'point'}
  26. ]);
  27. // Configuration for the Timeline
  28. var options = {
  29. // hiddenDates: {
  30. // specific:[
  31. // {start: '2014-03-21 00:00:00', end: '2014-03-28 00:00:00'},
  32. // {start: '2014-03-05 00:00:00', end: '2014-03-10 00:00:00'}
  33. // ],
  34. // periodic: {
  35. // times: [{start:'20:00:00', end:'09:00:00'}],
  36. // days: [{start: 6, end:1}] // 1 - 7 : Monday - Sunday
  37. // }
  38. // },
  39. hiddenDates: [
  40. {start: '2014-03-21 00:00:00', end: '2014-03-28 00:00:00'},
  41. {start: '2013-03-29 00:00:00', end: '2013-03-31 00:00:00', repeat: "weekly"}, // daily weekly monthly yearly
  42. {start: '2013-03-29 20:00:00', end: '2013-03-31 9:00:00', repeat: "daily"}, // daily weekly monthly yearly
  43. ],
  44. start: '2014-04-17',
  45. end: '2014-05-01',
  46. height: '200px',
  47. editable: true,
  48. showCustomTime: true
  49. };
  50. // Create a Timeline
  51. var timeline = new vis.Timeline(container, items, options);
  52. timeline.setCustomTime("2014-04-18 13:00:00");
  53. </script>
  54. </body>
  55. </html>