Vis.js可視化庫
Vis.js 是一個(gè)動(dòng)態(tài)的基于瀏覽器的可視化庫,特點(diǎn)是易用,可處理大量的動(dòng)態(tài)數(shù)據(jù),并與這些數(shù)據(jù)進(jìn)行交互操作。該庫包含 DataSet, Timeline, and Graph.
示例代碼:
<!doctype html>
<html>
<head>
<title>Timeline | Basic demo</title>
<script src="http://visjs.org/dist/vis.js"></script>
<link />
<style type="text/css">
body, html {
font-family: sans-serif;
}
</style>
</head>
<body>
<div id="mytimeline"></div>
<script type="text/javascript">
var container = document.getElementById('mytimeline');
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);
</script>
</body>
</html>
可視化效果:
評(píng)論
圖片
表情
