VIS
2017年12月3日小于 1 分钟
VIS
VIS is A dynamic, browser based visualization library. The library is designed to be easy to use,
to handle large amounts of dynamic data, and to enable manipulation of and interaction with the data.
yfiles
一开始想学这个,后开发现收费不开源。想学个开源的。
Quick Start
Timeline
Timeline basic demo
body, html {
font-family: sans-serif;
}
var container = document.getElementById('visualization');
var data = [
{id: 1, content: 'item 1', start: '2013-04-20'},
{id: 2, content: 'item 2', start: '2013-04-14'},
{id: 3, content: 'item 3', start: '2013-04-18'},
{id: 4, content: 'item 4', start: '2013-04-16', end: '2013-04-19'},
{id: 5, content: 'item 5', start: '2013-04-25'},
{id: 6, content: 'item 6', start: '2013-04-27'}
];
var options = {};
var timeline = new vis.Timeline(container, data, options);
贡献者
binbin.hou