summaryrefslogtreecommitdiff
path: root/www/lib/vis/examples/timeline/other/verticalScroll.html
diff options
context:
space:
mode:
Diffstat (limited to 'www/lib/vis/examples/timeline/other/verticalScroll.html')
-rw-r--r--www/lib/vis/examples/timeline/other/verticalScroll.html93
1 files changed, 0 insertions, 93 deletions
diff --git a/www/lib/vis/examples/timeline/other/verticalScroll.html b/www/lib/vis/examples/timeline/other/verticalScroll.html
deleted file mode 100644
index ddf946f0..00000000
--- a/www/lib/vis/examples/timeline/other/verticalScroll.html
+++ /dev/null
@@ -1,93 +0,0 @@
-<html>
-<head>
- <title>Timeline | Vertical Scroll Option</title>
-
- <script src="../../../dist/vis.js"></script>
- <link href="../../../dist/vis.css" rel="stylesheet" type="text/css" />
-
- <script src="../../googleAnalytics.js"></script>
-</head>
-
-<body>
-
-<h1>Timeline vertical scroll option</h1>
-
-<h2>With <code>
-verticalScroll: true,
-zoomKey: 'ctrlKey'</code>
-</h2>
-
-<div id="mytimeline1"></div>
-
-<h2>With <code>
-horizontalScroll: true,
-verticalScroll: true,
-zoomKey: 'ctrlKey'</code>
-</h2>
-<div id="mytimeline2"></div>
-<script>
-
- // create groups
- var numberOfGroups = 25;
- var groups = new vis.DataSet()
- for (var i = 0; i < numberOfGroups; i++) {
- groups.add({
- id: i,
- content: 'Truck&nbsp;' + i
- })
- }
-
- // create items
- var numberOfItems = 1000;
- var items = new vis.DataSet();
-
- var itemsPerGroup = Math.round(numberOfItems/numberOfGroups);
-
- for (var truck = 0; truck < numberOfGroups; truck++) {
- var date = new Date();
- for (var order = 0; order < itemsPerGroup; order++) {
- date.setHours(date.getHours() + 4 * (Math.random() < 0.2));
- var start = new Date(date);
-
- date.setHours(date.getHours() + 2 + Math.floor(Math.random()*4));
- var end = new Date(date);
-
- items.add({
- id: order + itemsPerGroup * truck,
- group: truck,
- start: start,
- end: end,
- content: 'Order ' + order
- });
- }
- }
-
- // specify options
- var options = {
- stack: true,
- verticalScroll: true,
- zoomKey: 'ctrlKey',
- maxHeight: 200,
- start: new Date(),
- end: new Date(1000*60*60*24 + (new Date()).valueOf()),
- editable: true,
- margin: {
- item: 10, // minimal margin between items
- axis: 5 // minimal margin between items and the axis
- },
- orientation: 'top'
- };
-
- // create a Timeline
- options1 = Object.assign({}, options)
- var container1 = document.getElementById('mytimeline1');
- timeline1 = new vis.Timeline(container1, items, groups, options1);
-
- options2 = Object.assign({horizontalScroll: true}, options)
- var container2 = document.getElementById('mytimeline2');
- timeline2 = new vis.Timeline(container2, items, groups, options2);
-
-</script>
-
-</body>
-</html>