|
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<title>Timeline | Grid styling</title>
|
|
|
|
<script src="../../dist/vis.js"></script>
|
|
<link href="../../dist/vis.css" rel="stylesheet" type="text/css" />
|
|
|
|
<style type="text/css">
|
|
body, html {
|
|
font-family: sans-serif;
|
|
}
|
|
|
|
/* alternating column backgrounds */
|
|
.vis-time-axis .vis-grid.odd {
|
|
background: #f5f5f5;
|
|
}
|
|
|
|
/* gray background in weekends, white text color */
|
|
.vis-time-axis .vis-grid.saturday,
|
|
.vis-time-axis .vis-grid.sunday {
|
|
background: gray;
|
|
}
|
|
.vis-time-axis .vis-text.saturday,
|
|
.vis-time-axis .vis-text.sunday {
|
|
color: white;
|
|
}
|
|
</style>
|
|
<script>(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)})(window,document,'script','//www.google-analytics.com/analytics.js','ga');ga('create', 'UA-61231638-1', 'auto');ga('send', 'pageview');</script></head>
|
|
<body>
|
|
<div id="visualization"></div>
|
|
|
|
<script type="text/javascript">
|
|
// DOM element where the Timeline will be attached
|
|
var container = document.getElementById('visualization');
|
|
|
|
// Create a DataSet (allows two way data-binding)
|
|
var items = new vis.DataSet([
|
|
{id: 1, content: 'custom', start: '2015-01-01'},
|
|
{id: 2, content: 'styling', start: '2016-01-01'},
|
|
{id: 3, content: 'of', start: '2017-01-01'},
|
|
{id: 4, content: 'background', start: '2018-01-01'},
|
|
{id: 5, content: 'grid', start: '2019-01-01'}
|
|
]);
|
|
|
|
// Configuration for the Timeline
|
|
var options = {};
|
|
|
|
// Create a Timeline
|
|
var timeline = new vis.Timeline(container, items, options);
|
|
</script>
|
|
</body>
|
|
</html>
|