<!DOCTYPE HTML> <html> <head> <title></title> <script src="../node_modules/moment/moment.js"></script> <script src="../node_modules/moment/locale/nl.js"></script> <script> moment.lang('nl'); </script> <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; font-size: 11pt; } #visualization .itemset { /*background: rgba(255, 255, 0, 0.5);*/ } </style> </head> <body> <div> <label for="orientation">Orientation</label> <select id="orientation"> <option value="top">top</option> <option value="bottom" selected>bottom</option> </select> </div> <script> var o = document.getElementById('orientation'); o.onchange = function () { timeline.setOptions({ orientation: o.value }); }; </script> <div> <label for="currenttime"><input id="currenttime" type="checkbox" checked="true"> Show current time</label> </div> <script> var currenttime = document.getElementById('currenttime'); currenttime.onchange = function () { timeline.setOptions({ showCurrentTime: currenttime.checked }); }; </script> <br> <div id="visualization"></div> <script> console.time('create dataset'); // create a dataset with items var now = moment().minutes(0).seconds(0).milliseconds(0); var items = new vis.DataSet({ type: { start: 'ISODate', end: 'ISODate' }, fieldId: '_id' }); items.add([ {_id: 0, content: 'item 0', start: now.clone().add('days', 3).toDate(), title: 'hello title!'}, {_id: '1', content: 'item 1<br>start', start: now.clone().add('days', 4).toDate()}, {_id: 2, content: 'item 2', start: now.clone().add('days', -2).toDate() }, {_id: 3, content: 'item 3', start: now.clone().add('days', 2).toDate()}, { _id: 4, content: 'item 4 ', start: now.clone().add('days', 0).toDate(), end: now.clone().add('days', 7).toDate(), title: 'hello title!' }, {_id: 5, content: 'item 5', start: now.clone().add('days', 9).toDate(), type:'point', title: 'hello title!'}, {_id: 6, content: 'item 6', start: now.clone().add('days', 11).toDate()} ]); var container = document.getElementById('visualization'); var options = { editable: true, //orientation: 'top', start: now.clone().add('days', -7), end: now.clone().add('days', 7), //maxHeight: 200, //height: 200, showCurrentTime: true, showCustomTime: true, //clickToUse: true, //min: moment('2013-01-01'), //max: moment('2013-12-31'), //zoomMin: 1000 * 60 * 60 * 24, // 1 day zoomMax: 1000 * 60 * 60 * 24 * 30 * 6 // 6 months }; console.timeEnd('create dataset'); console.time('create timeline'); var timeline = new vis.Timeline(container, items, options); console.timeEnd('create timeline'); timeline.on('select', function (selection) { console.log('select', selection); }); /* timeline.on('rangechange', function (range) { console.log('rangechange', range); }); timeline.on('rangechanged', function (range) { console.log('rangechanged', range); }); */ items.on('add', console.log.bind(console)); items.on('update', console.log.bind(console)); items.on('remove', console.log.bind(console)); </script> </body> </html>