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.

60 lines
1.8 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.timeline .item.background.negative {
  11. background-color: rgba(255, 0, 0, 0.2);
  12. }
  13. .vis.timeline .item.background.marker {
  14. border-left: 2px solid green;
  15. }
  16. </style>
  17. <script src="../../dist/vis.js"></script>
  18. <link href="../../dist/vis.css" rel="stylesheet" type="text/css" />
  19. </head>
  20. <body>
  21. <p>This example demonstrates the item type "background", see "Period A" and "Period B". The background areas can be styled with css.</p>
  22. <div id="visualization"></div>
  23. <script>
  24. // create a dataset with items
  25. // we specify the type of the fields `start` and `end` here to be strings
  26. // containing an ISO date. The fields will be outputted as ISO dates
  27. // automatically getting data from the DataSet via items.get().
  28. var items = new vis.DataSet({
  29. type: { start: 'ISODate', end: 'ISODate' }
  30. });
  31. // add items to the DataSet
  32. items.add([
  33. {id: 'A', content: 'Period A', start: '2014-01-16', end: '2014-01-22', type: 'background'},
  34. {id: 'B', content: 'Period B', start: '2014-01-25', end: '2014-01-30', type: 'background', className: 'negative'},
  35. {id: 1, content: 'item 1<br>start', start: '2014-01-23'},
  36. {id: 2, content: 'item 2', start: '2014-01-18'},
  37. {id: 3, content: 'item 3', start: '2014-01-21'},
  38. {id: 4, content: 'item 4', start: '2014-01-19', end: '2014-01-24'},
  39. {id: 5, content: 'item 5', start: '2014-01-28', type:'point'},
  40. {id: 6, content: 'item 6', start: '2014-01-26'}
  41. ]);
  42. var container = document.getElementById('visualization');
  43. var options = {
  44. start: '2014-01-10',
  45. end: '2014-02-10',
  46. editable: true
  47. };
  48. var timeline = new vis.Timeline(container, items, options);
  49. </script>
  50. </body>
  51. </html>