diff options
| author | Pliable Pixels <pliablepixels@gmail.com> | 2017-09-21 12:49:18 -0400 |
|---|---|---|
| committer | Pliable Pixels <pliablepixels@gmail.com> | 2017-09-21 12:49:18 -0400 |
| commit | b28028ac4082842143b0f528d6bc539da6ccb419 (patch) | |
| tree | 1e26ea969a781ed8e323fca4e3c76345113fc694 /www/lib/vis/examples/timeline/editing/customSnappingOfItems.html | |
| parent | 676270d21beed31d767a06c89522198c77d5d865 (diff) | |
mega changes, including updates and X
Diffstat (limited to 'www/lib/vis/examples/timeline/editing/customSnappingOfItems.html')
| -rw-r--r-- | www/lib/vis/examples/timeline/editing/customSnappingOfItems.html | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/www/lib/vis/examples/timeline/editing/customSnappingOfItems.html b/www/lib/vis/examples/timeline/editing/customSnappingOfItems.html new file mode 100644 index 00000000..b1c8ef75 --- /dev/null +++ b/www/lib/vis/examples/timeline/editing/customSnappingOfItems.html @@ -0,0 +1,55 @@ +<!DOCTYPE HTML> +<html> +<head> + <title>Timeline | Custom snapping</title> + + <script src="../../../dist/vis.js"></script> + <link href="../../../dist/vis-timeline-graph2d.min.css" rel="stylesheet" type="text/css" /> + <script src="../../googleAnalytics.js"></script> +</head> +<body> +<p> + When moving the items in on the Timeline below, they will snap to full hours, + independent of being zoomed in or out. +</p> +<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: 'A', start: '2015-02-09T04:00:00'}, + {id: 2, content: 'B', start: '2015-02-09T14:00:00'}, + {id: 3, content: 'C', start: '2015-02-09T16:00:00'}, + {id: 4, content: 'D', start: '2015-02-09T17:00:00'}, + {id: 5, content: 'E', start: '2015-02-10T03:00:00'} + ]); + + // Configuration for the Timeline + var options = { + editable: true, + + // always snap to full hours, independent of the scale + snap: function (date, scale, step) { + var hour = 60 * 60 * 1000; + return Math.round(date / hour) * hour; + } + + // to configure no snapping at all: + // + // snap: null + // + // or let the snap function return the date unchanged: + // + // snap: function (date, scale, step) { + // return date; + // } + }; + + // Create a Timeline + var timeline = new vis.Timeline(container, items, options); +</script> +</body> +</html>
\ No newline at end of file |
