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.

49 lines
1.4 KiB

  1. <!DOCTYPE HTML>
  2. <html>
  3. <head>
  4. <title>Timeline | Background areas</title>
  5. <style>
  6. body, html {
  7. font-family: arial, sans-serif;
  8. font-size: 11pt;
  9. }
  10. .vis-item.vis-background.negative {
  11. background-color: rgba(255, 0, 0, 0.2);
  12. }
  13. </style>
  14. <script src="../../../dist/vis.js"></script>
  15. <link href="../../../dist/vis-timeline-graph2d.min.css" rel="stylesheet" type="text/css" />
  16. </head>
  17. <body>
  18. <p>This example demonstrates the item type "background", see "Period A" and "Period B". The background areas can be styled with css.</p>
  19. <div id="visualization"></div>
  20. <script>
  21. var items = new vis.DataSet([
  22. {id: 'A', content: 'Period A', start: '2014-01-16', end: '2014-01-22', type: 'background'},
  23. {id: 'B', content: 'Period B', start: '2014-01-25', end: '2014-01-30', type: 'background', className: 'negative'},
  24. {id: 1, content: 'item 1<br>start', start: '2014-01-23'},
  25. {id: 2, content: 'item 2', start: '2014-01-18'},
  26. {id: 3, content: 'item 3', start: '2014-01-21'},
  27. {id: 4, content: 'item 4', start: '2014-01-19', end: '2014-01-24'},
  28. {id: 5, content: 'item 5', start: '2014-01-28', type:'point'},
  29. {id: 6, content: 'item 6', start: '2014-01-26'}
  30. ]);
  31. var container = document.getElementById('visualization');
  32. var options = {
  33. start: '2014-01-10',
  34. end: '2014-02-10',
  35. editable: true
  36. };
  37. var timeline = new vis.Timeline(container, items, options);
  38. </script>
  39. </body>
  40. </html>