|
|
|
@ -0,0 +1,294 @@ |
|
|
|
<!doctype html> |
|
|
|
<html> |
|
|
|
|
|
|
|
<head> |
|
|
|
<title>vis.js | a dynamic, browser-based visualization library</title> |
|
|
|
|
|
|
|
<meta charset='utf-8' /> |
|
|
|
<meta name="title" content="vis.js"> |
|
|
|
<meta name="description" content="vis.js is a dynamic, browser-based visualization library" /> |
|
|
|
<meta name="keywords" content="vis, visualization, javascript, browser based, web based, chart, linechart, timeline, graph, network, browser" /> |
|
|
|
<meta name="author" content="Almende B.V."> |
|
|
|
|
|
|
|
<link href="docs/css/prettify.css" type="text/css" rel="stylesheet" /> |
|
|
|
<link href='docs/css/style.css' type='text/css' rel='stylesheet'> |
|
|
|
<link href="css/style.css" type="text/css" rel="stylesheet" > |
|
|
|
|
|
|
|
<script type="text/javascript" src="docs/lib/prettify/prettify.js"></script> |
|
|
|
</head> |
|
|
|
|
|
|
|
<body onload="prettyPrint();"> |
|
|
|
<div id="container"> |
|
|
|
|
|
|
|
<div id="menu"> |
|
|
|
<a href="http://visjs.org/"><img src="img/logo/vis128.png" alt="logo"></a> |
|
|
|
|
|
|
|
<div class="nav"> |
|
|
|
<ul> |
|
|
|
<li><a href="#install">Install</a></li> |
|
|
|
<li><a href="#example">Example</a></li> |
|
|
|
<li><a href="#gallery">Gallery</a></li> |
|
|
|
<li><a href="#docs">Docs</a></li> |
|
|
|
<li><a href="#license">License</a></li> |
|
|
|
</ul> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
|
|
|
|
<h1>vis.js</h1> |
|
|
|
|
|
|
|
<p> |
|
|
|
Vis.js 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 the data. |
|
|
|
The library consists of the components DataSet, Timeline, and Graph. |
|
|
|
</p> |
|
|
|
<p> |
|
|
|
The vis.js library is developed by <a href="http://almende.com" target="_blank">Almende B.V</a>. |
|
|
|
</p> |
|
|
|
|
|
|
|
|
|
|
|
<h2 id="install">Install</h2> |
|
|
|
|
|
|
|
<h3>npm</h3> |
|
|
|
Install via npm: |
|
|
|
|
|
|
|
<pre class="prettyprint"> |
|
|
|
npm install vis |
|
|
|
</pre> |
|
|
|
|
|
|
|
<h3>bower</h3> |
|
|
|
Install via bower: |
|
|
|
|
|
|
|
<pre class="prettyprint"> |
|
|
|
bower install vis |
|
|
|
</pre> |
|
|
|
|
|
|
|
<h3>download</h3> |
|
|
|
Or download the library from the github project: |
|
|
|
<a href="https://github.com/almende/vis.git" target="_blank">https://github.com/almende/vis.git</a>. |
|
|
|
|
|
|
|
<h2 id="example">Example</h2> |
|
|
|
|
|
|
|
<p> |
|
|
|
A basic example demonstrating how to use the vis.js timeline is shown below. |
|
|
|
</p> |
|
|
|
|
|
|
|
<p> |
|
|
|
More examples can be found in the |
|
|
|
<a href="examples" target="_blank">examples directory</a>. |
|
|
|
</p> |
|
|
|
|
|
|
|
<pre class="prettyprint lang-html"><!doctype html> |
|
|
|
<html> |
|
|
|
<head> |
|
|
|
<title>Timeline | Basic demo</title> |
|
|
|
<script src="http://visjs.org/vis.js"></script> |
|
|
|
|
|
|
|
<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> |
|
|
|
</pre> |
|
|
|
|
|
|
|
|
|
|
|
<h2 id="gallery">Gallery</h2> |
|
|
|
|
|
|
|
<h3 id="timeline">Timeline</h3> |
|
|
|
<div class="gallery"> |
|
|
|
<div class="thumb"> |
|
|
|
<a href="examples/timeline/01_basic.html"> |
|
|
|
<img src="img/gallery/timeline/01_basic.png"> |
|
|
|
<div>basic usage</div> |
|
|
|
</a> |
|
|
|
</div> |
|
|
|
<div class="thumb"> |
|
|
|
<a href="examples/timeline/02_dataset.html"> |
|
|
|
<img src="img/gallery/timeline/02_dataset.png"> |
|
|
|
<div>dataset</div> |
|
|
|
</a> |
|
|
|
</div> |
|
|
|
<div class="thumb"> |
|
|
|
<a href="examples/timeline/03_much_data.html"> |
|
|
|
<img src="img/gallery/timeline/03_much_data.png"> |
|
|
|
<div>much data</div> |
|
|
|
</a> |
|
|
|
</div> |
|
|
|
<div class="thumb"> |
|
|
|
<a href="examples/timeline/04_html_data.html"> |
|
|
|
<img src="img/gallery/timeline/04_html_data.png"> |
|
|
|
<div>html data</div> |
|
|
|
</a> |
|
|
|
</div> |
|
|
|
<div class="thumb"> |
|
|
|
<a href="examples/timeline/05_groups.html"> |
|
|
|
<img src="img/gallery/timeline/05_groups.png"> |
|
|
|
<div>groups</div> |
|
|
|
</a> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
|
|
|
|
<h3 id="graph">Graph</h3> |
|
|
|
|
|
|
|
<div class="gallery"> |
|
|
|
<div class="thumb"> |
|
|
|
<a href="examples/graph/01_basic_usage.html"> |
|
|
|
<img src="img/gallery/graph/01_basic_usage.png"> |
|
|
|
<div>basic usage</div> |
|
|
|
</a> |
|
|
|
</div> |
|
|
|
<div class="thumb"> |
|
|
|
<a href="examples/graph/02_random_nodes.html"> |
|
|
|
<img src="img/gallery/graph/02_random_nodes.png"> |
|
|
|
<div>random nodes</div> |
|
|
|
</a> |
|
|
|
</div> |
|
|
|
<div class="thumb"> |
|
|
|
<a href="examples/graph/03_images.html"> |
|
|
|
<img src="img/gallery/graph/03_images.png"> |
|
|
|
<div>images</div> |
|
|
|
</a> |
|
|
|
</div> |
|
|
|
<div class="thumb"> |
|
|
|
<a href="examples/graph/04_shapes.html"> |
|
|
|
<img src="img/gallery/graph/04_shapes.png"> |
|
|
|
<div>shapes</div> |
|
|
|
</a> |
|
|
|
</div> |
|
|
|
<div class="thumb"> |
|
|
|
<a href="examples/graph/05_social_network.html"> |
|
|
|
<img src="img/gallery/graph/05_social_network.png"> |
|
|
|
<div>social network</div> |
|
|
|
</a> |
|
|
|
</div> |
|
|
|
<div class="thumb"> |
|
|
|
<a href="examples/graph/06_groups.html"> |
|
|
|
<img src="img/gallery/graph/06_groups.png"> |
|
|
|
<div>groups</div> |
|
|
|
</a> |
|
|
|
</div> |
|
|
|
<div class="thumb"> |
|
|
|
<a href="examples/graph/07_selections.html"> |
|
|
|
<img src="img/gallery/graph/07_selections.png"> |
|
|
|
<div>selections</div> |
|
|
|
</a> |
|
|
|
</div> |
|
|
|
<div class="thumb"> |
|
|
|
<a href="examples/graph/08_mobile_friendly.html"> |
|
|
|
<img src="img/gallery/graph/08_mobile_friendly.png"> |
|
|
|
<div>mobile friendly</div> |
|
|
|
</a> |
|
|
|
</div> |
|
|
|
<div class="thumb"> |
|
|
|
<a href="examples/graph/09_sizing.html"> |
|
|
|
<img src="img/gallery/graph/09_sizing.png"> |
|
|
|
<div>sizing</div> |
|
|
|
</a> |
|
|
|
</div> |
|
|
|
<div class="thumb"> |
|
|
|
<a href="examples/graph/10_multiline_text.html"> |
|
|
|
<img src="img/gallery/graph/10_multiline_text.png"> |
|
|
|
<div>multiline text</div> |
|
|
|
</a> |
|
|
|
</div> |
|
|
|
<div class="thumb"> |
|
|
|
<a href="examples/graph/11_custom_style.html"> |
|
|
|
<img src="img/gallery/graph/11_custom_style.png"> |
|
|
|
<div>custom style</div> |
|
|
|
</a> |
|
|
|
</div> |
|
|
|
<div class="thumb"> |
|
|
|
<a href="examples/graph/12_scalable_images.html"> |
|
|
|
<img src="img/gallery/graph/12_scalable_images.png"> |
|
|
|
<div>scalable images</div> |
|
|
|
</a> |
|
|
|
</div> |
|
|
|
<div class="thumb"> |
|
|
|
<a href="examples/graph/13_dashed_lines.html"> |
|
|
|
<img src="img/gallery/graph/13_dashed_lines.png"> |
|
|
|
<div>dashed lines</div> |
|
|
|
</a> |
|
|
|
</div> |
|
|
|
<div class="thumb"> |
|
|
|
<a href="examples/graph/14_dot_language.html"> |
|
|
|
<img src="img/gallery/graph/14_dot_language.png"> |
|
|
|
<div>dot language</div> |
|
|
|
</a> |
|
|
|
</div> |
|
|
|
<div class="thumb"> |
|
|
|
<a href="examples/graph/15_dot_language_playground.html"> |
|
|
|
<img src="img/gallery/graph/15_dot_language_playground.png"> |
|
|
|
<div>playground</div> |
|
|
|
</a> |
|
|
|
</div> |
|
|
|
<div class="thumb"> |
|
|
|
<a href="examples/graph/graphviz/graphviz_gallery.html"> |
|
|
|
<img src="img/gallery/graph/graphviz_gallery.png"> |
|
|
|
<div>graphviz gallery</div> |
|
|
|
</a> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
|
|
|
|
<h2 id="docs">Docs</h2> |
|
|
|
|
|
|
|
<p> |
|
|
|
The following documentation is available: |
|
|
|
</p> |
|
|
|
<ul> |
|
|
|
<li><a href="https://github.com/almende/vis#readme" target="_blank">Introduction</a></li> |
|
|
|
<li><a href="docs/dataset.html" target="_blank">DataSet</a></li> |
|
|
|
<li><a href="docs/graph.html" target="_blank">Graph</a></li> |
|
|
|
<li><a href="docs/timeline.html" target="_blank">Timeline</a></li> |
|
|
|
</ul> |
|
|
|
|
|
|
|
|
|
|
|
<h2 id="license">License</h2> |
|
|
|
|
|
|
|
<p> |
|
|
|
Copyright (C) 2010-2013 Almende B.V. |
|
|
|
</p> |
|
|
|
|
|
|
|
<p> |
|
|
|
Licensed under the Apache License, Version 2.0 (the "License"); |
|
|
|
you may not use this file except in compliance with the License. |
|
|
|
You may obtain a copy of the License at |
|
|
|
</p> |
|
|
|
|
|
|
|
<p> |
|
|
|
http://www.apache.org/licenses/LICENSE-2.0 |
|
|
|
</p> |
|
|
|
|
|
|
|
<p> |
|
|
|
Unless required by applicable law or agreed to in writing, software |
|
|
|
distributed under the License is distributed on an "AS IS" BASIS, |
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
|
|
See the License for the specific language governing permissions and |
|
|
|
limitations under the License. |
|
|
|
</p> |
|
|
|
|
|
|
|
<a id="forkme" href="https://github.com/almende/vis/" target="_blank"> |
|
|
|
<img src="img/forkme_right_darkblue_121621.png" alt="Fork me on GitHub" > |
|
|
|
</a> |
|
|
|
|
|
|
|
</div> |
|
|
|
</body> |
|
|
|
</html> |