vis.js is a dynamic, browser-based visualization library
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

314 lines
16 KiB

<!DOCTYPE html>
<html lang="en"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" HREF="favicon.ico">
<title>vis.js - A dynamic, browser based visualization library.</title>
<!-- Bootstrap core CSS -->
<link href="./css/bootstrap.css" rel="stylesheet">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<style>
body {
font-family: Lustria,Georgia,Times,"Times New Roman",serif !important;
}
a.header{
color:#8bb9fb;
}
img.icon {
position:relative;
top:-2px;
}
div.wall {
background-image: url("./images/wall.png");
background-repeat: no-repeat;
}
div.trans {
background-color: rgba(0,0,0,0);
}
div.jumbo {
color: #fff;
text-align: center;
text-shadow: 1px 1px 3px rgba(0, 0, 0, 1);
}
div.navbar-wrapper {
background-color:#07508E;
border-bottom: 3px solid #ffffff;
}
h2.featurette-heading {
font-size:50px;
}
div.valign_parent {
display:inline-flex;
height: 457px;
}
div.valign_child {
margin:auto 0px;
}
</style>
</head>
<!-- NAVBAR
================================================== -->
<body>
<div class="navbar-wrapper">
<div class="container">
<nav class="navbar navbar-inverse navbar-static-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand hidden-sm" href="#">vis.js</a>
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li class="active"><a href="#about">Modules</a></li>
<li><a href="./docs/index.html" target="_blank">Documentation <img class="icon" src="./images/external-link-icons/external-link-icon-white.png"></a></li>
<li><a href="./blog.html">Blog</a></li>
<li><a href="#download_install">Download</a></li>
<li><a href="#showcase">Showcase</a></li>
<li><a href="#contribute">Contribute</a></li>
<li><a href="#featureRequests">Feature requests</a></li>
<li><a href="#licenses">License</a></li>
</ul>
</div>
</div>
</nav>
</div>
</div>
<a href="https://github.com/almende/vis" class="hidden-xs hidden-sm hidden-md"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://camo.githubusercontent.com/38ef81f8aca64bb9a64448d0d70f1308ef5341ab/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f6461726b626c75655f3132313632312e706e67" alt="Fork me on GitHub" data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png"></a>
<!-- Carousel
================================================== -->
<div class="jumbotron wall">
<div class="jumbotron trans">
<div class="container jumbo">
<h1>vis.js</h1>
<p>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.
The library consists of the components DataSet, Timeline, Network, Graph2d and Graph3d. <a href="#download_install" class="header">Get it over here!</a></p>
</div>
</div>
<!--<div class="container">-->
<!--<div class="carousel-caption">-->
<!--<h1>vis.js</h1>-->
<!--</div>-->
<!--</div>-->
</div>
<!-- Marketing messaging and featurettes
================================================== -->
<!-- Wrap the rest of the page in another container to center all the content. -->
<div class="container marketing" id="modules">
<!-- Three columns of text below the carousel -->
<div class="row">
<div class="col-md-3">
<a href="./network_examples.html"><img class="img-thumbnail" src="./images/network.png"alt="network examples" style="width: 240px; height: 140px;"></a>
<h2>Network</h2>
<p class="text-justify">Network is a visualization to display networks and networks consisting of nodes and edges. The visualization is easy to use and supports custom shapes, styles, colors, sizes, images, and more.
To handle a larger amount of nodes, Network has clustering support. Network uses HTML canvas for rendering.</p>
<p><a class="btn btn-default" href="./network_examples.html" role="button">View examples »</a></p>
<p><a class="btn btn-primary" href="./docs/network.html" role="button">View docs »</a></p>
</div><!-- /.col-lg-4 -->
<div class="col-md-3">
<a href="./timeline_examples.html"><img class="img-thumbnail" src="./images/timeline.png" alt="timeline examples" style="width: 240px; height: 140px;"></a>
<h2>Timeline</h2>
<p class="text-justify">The Timeline is an interactive chart to visualize data in time. The data items can take place on a single date, or have a start and end date (a range).
Timeline uses regular HTML DOM to render the timeline and items put on the timeline. This allows for flexible customization using css styling.</p>
<p><a class="btn btn-default" href="./timeline_examples.html" role="button">View examples »</a></p>
<p><a class="btn btn-primary" href="./docs/timeline.html" role="button">View docs »</a></p>
</div><!-- /.col-lg-4 -->
<div class="col-md-3">
<a href="./graph2d_examples.html"><img class="img-thumbnail" src="./images/graph2d.png" alt="graph2d examples" style="width: 240px; height: 140px;"></a>
<h2>Graph2d</h2>
<p class="text-justify">Graph2d is an interactive visualization chart to draw data in a 2D graph. It can plot lines, point and bars. You can freely move and zoom in the graph by dragging and scrolling in the window.
<br />
Graph2d uses HTML DOM and SVG for rendering. This allows for flexible customization using css styling.</p>
<p><a class="btn btn-default" href="./graph2d_examples.html" role="button">View examples »</a></p>
<p><a class="btn btn-primary" href="./docs/graph2d.html" role="button">View docs »</a></p>
</div><!-- /.col-lg-4 -->
<div class="col-md-3">
<a href="./graph3d_examples.html"><img class="img-thumbnail" src="./images/graph3d.png" alt="graph3d examples" style="width: 240px; height: 140px;"></a>
<h2>Graph3d</h2>
<p class="text-justify">Graph3d is an interactive visualization chart to draw data in a three dimensional graph.
You can freely move and zoom in the graph by dragging and scrolling in the window. Graph3d also supports animation of a graph.
Graph3d uses HTML canvas to render graphs, and can render up to a few thousands of data points smoothly.</p>
<p><a class="btn btn-default" href="./graph3d_examples.html" role="button">View examples »</a></p>
<p><a class="btn btn-primary" href="./docs/graph3d.html" role="button">View docs »</a></p>
</div><!-- /.col-lg-4 -->
</div><!-- /.row -->
<!-- START THE FEATURETTES -->
<br /><hr class="featurette-divider"><br />
<div class="row featurette" id="download_install">
<div class="col-md-5">
<img class="featurette-image img-responsive hidden-xs hidden-sm img-thumbnail" data-src="holder.js/500x500/auto" alt="500x500" src="./images/gettingstartedSlide.png" data-holder-rendered="true">
</div>
<div class="col-md-7">
<div class="valign_parent">
<div class="valign_child">
<h2 class="featurette-heading">Download; <span class="text-muted">getting started</span></h2>
<p class="text-justify">
The vis.js library is developed by <a href="http://almende.com" target="_blank">Almende B.V</a>,
as part of <a href="http://chap.almende.com/" target="_blank">CHAP</a>.
Vis.js runs fine on Chrome, Firefox, Opera, Safari, IE9+, and most mobile browsers (with full touch support).
This site contains documentation, downloads and live examples of vis.js. The <a href="https://github.com/almende/vis/issues">sourcecode of vis.js</a> is available at Github. For questions, issues, and suggestions please use the <a href="https://github.com/almende/vis/issues">issues section</a> of the Github project.
<h3>installing with npm</h3>
<pre class="prettyprint">npm install vis</pre>
<h3>installing with bower</h3>
<pre class="prettyprint">bower install vis</pre>
<a href="download/vis.zip"><h3>download zip (version <span class="version">3.6.2</span>)</h3></a>
</p>
</div>
</div>
</div>
</div>
<br /><hr class="featurette-divider"><br />
<div class="row featurette" id="showcase">
<div class="col-md-7">
<div class="valign_parent">
<div class="valign_child">
<h2 class="featurette-heading">Showcase; <span class="text-muted">see vis in action!</span></h2>
<p class="lead"><a href="./showcase/index.html">
In this section you can see cool projects that vis was used in.</a> If you have made something and would like it featured,
please make an <a href="https://github.com/almende/vis/issues" target="_blank">issue on github</a> with your project and how you'd like to be credited.</p>
</div>
</div>
</div>
<div class="col-md-5">
<a href="showcases.html"><img class="featurette-image img-responsive hidden-xs hidden-sm img-thumbnail" data-src="holder.js/500x500/auto" alt="500x500" src="./images/showcase.png" data-holder-rendered="true"></a>
</div>
</div>
<br /><hr class="featurette-divider"><br />
<div class="row featurette" id="contribute">
<div class="col-md-5">
<a href="https://github.com/almende/vis/" target="_blank"><img class="featurette-image img-responsive hidden-xs hidden-sm img-thumbnail" data-src="holder.js/500x500/auto" alt="500x500" src="./images/octocat.png" data-holder-rendered="true"></a>
</div>
<div class="col-md-7">
<div class="valign_parent">
<div class="valign_child">
<h2 class="featurette-heading">Contribute; <span class="text-muted">join the project</span></h2>
<p class="lead">Since vis.js is an open source project, everybody can contribute to it. If you want to contribute, great! Here's how:</p>
<p class="text-justify">
First, fork vis on Github, then add your feature, fix a bug,
rephrase our writing etc. and do a <a href="https://help.github.com/articles/using-pull-requests/">pull request</a> to the develop branch on Github!
Pull requests to the master branch will not be merged.
<br /><br />
If you fork the codebase, you'll find all modules in seperate files. This makes it a lot easier to work on than the distributed and combined vis.js file.
<br /><br />
If you want to contribute but don't know how, feel free to pick up <a href="./featureRequests.html">a feature request described below</a>!
These come from ourselves as well as from Github issues. If you do, <a href="https://github.com/almende/vis/issues" target="_blank">please post an issue on Github letting us know</a>, so we can mark the feature
under development as well as help out when needed. If we are about to implement something from <a href="./featureRequests.html">the list</a>, we'll remove it before starting.
</p>
</div>
</div>
</div>
</div>
<br /><hr class="featurette-divider"><br />
<div class="row featurette" id="featureRequests">
<div class="col-md-7">
<div class="valign_parent">
<div class="valign_child">
<h2 class="featurette-heading">Feature requests</h2>
<p class="lead">We get a lot of feature requests on Github. <a href="./featureRequests.html">Here's a list of them!</a></p>
<p class="text-justify">
The requests that come in on Github usually have a good argumentation and a lot of these ideas have made it into vis! To keep a nice overview of them, to clean up
our Github issues and to supply a pool of ideas for people to contribute, we have made <a href="./featureRequests.html">this list.</a>
<br /><br />
This is by no means an end-of-the-line for your feature, but just something that we cannot pick up right away or cannot use in our projects at this time.
We'd like to invite people who want to contribute to pick up one (or more!) of these features. <a href="./featureRequests.html">View the list here.</a>
</p>
</div>
</div>
</div>
<div class="col-md-5">
<a href="./featureRequests.html"><img class="featurette-image img-responsive hidden-xs hidden-sm img-thumbnail" data-src="holder.js/500x500/auto" alt="500x500" src="./images/feature_requests.png" data-holder-rendered="true"></a>
</div>
</div>
<br /><hr class="featurette-divider"><br />
<div class="row featurette" id="licenses">
<div class="col-md-5">
<img class="featurette-image img-responsive hidden-xs hidden-sm img-thumbnail" data-src="holder.js/500x500/auto" alt="500x500" src="./images/license.png" data-holder-rendered="true">
</div>
<div class="col-md-7">
<div class="valign_parent">
<div class="valign_child">
<h2 class="featurette-heading">Licenses</h2>
<p class="lead">
Copyright (C) 2010-2015 Almende B.V. <br /><br />
Vis.js is dual licensed under both Apache 2.0 and MIT.<br /><br />
Vis.js may be distributed under either license.
<ul>
<li>http://www.apache.org/licenses/LICENSE-2.0</li>
<li>-The MIT License http://opensource.org/licenses/MIT</li>
</ul>
</p>
</div>
</div>
</div>
</div>
<hr class="featurette-divider">
<!-- /END THE FEATURETTES -->
<!-- FOOTER -->
<footer>
<p class="pull-right"><a href="#">Back to top</a></p>
<p>© 2015 Almende B.V.</p>
</footer>
</div><!-- /.container -->
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="./js/jquery.min.js"></script>
<script src="./js/bootstrap.min.js"></script>
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
<script src="./js/ie10-viewport-bug-workaround.js"></script>