Created
April 8, 2018 22:20
-
-
Save miked0004/56607da3d690fcc384bc9c8ab5a91b65 to your computer and use it in GitHub Desktop.
vis.js navigation // source https://jsbin.com/faquwod
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<meta name="description" content="vis.js navigation"> | |
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/vis/4.21.0/vis.min.js"></script> | |
<link href="https://cdnjs.cloudflare.com/ajax/libs/vis/4.21.0/vis.min.css" rel="stylesheet" type="text/css" /> | |
<style type="text/css"> | |
#mynetwork { | |
width: 600px; | |
height: 400px; | |
border: 1px solid lightgray; | |
} | |
</style> | |
</head> | |
<body> | |
See <a href="http://visjs.org/docs/network">visjs.org/docs/network</a> | |
<div id="mynetwork"></div> | |
<script type="text/javascript"> | |
// create an array with nodes | |
var nodes = new vis.DataSet([ | |
{id: 1, label: 'Mt 6'}, | |
{id: 2, label: 'Jn 12'}, | |
{id: 3, label: 'Lk 11:2'}, | |
{id: 4, label: 'Prv 30'}, | |
{id: 5, label: 'Jn 5'} | |
]); | |
// create an array with edges | |
var edges = new vis.DataSet([ | |
{from: 1, to: 2}, | |
{from: 1, to: 3}, | |
{from: 1, to: 4}, | |
{from: 2, to: 5} | |
]); | |
// create a network | |
var container = document.getElementById('mynetwork'); | |
// provide the data in the vis format | |
var data = { | |
nodes: nodes, | |
edges: edges | |
}; | |
var options={}; | |
/*var options = { | |
autoResize: true, | |
height: '100%', | |
width: '100%' | |
locale: 'en', | |
};*/ | |
// initialize your network! | |
var network = new vis.Network(container, data, options); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment