Browse Source

reverted example... again..

v3_develop
Alex de Mulder 9 years ago
parent
commit
fdcd64186f
2 changed files with 2091 additions and 2112 deletions
  1. +2088
    -2091
      dist/vis.js
  2. +3
    -21
      examples/network/01_basic_usage.html

+ 2088
- 2091
dist/vis.js
File diff suppressed because it is too large
View File


+ 3
- 21
examples/network/01_basic_usage.html View File

@ -22,8 +22,8 @@
<script type="text/javascript">
// create an array with nodes
var nodes = [
{id: 1, label: 'Node 1', group: 'mygroup1'},
{id: 2, label: 'Node 2', group: 'mygroup1'},
{id: 1, label: 'Node 1'},
{id: 2, label: 'Node 2'},
{id: 3, label: 'Node 3'},
{id: 4, label: 'Node 4'},
{id: 5, label: 'Node 5'}
@ -43,27 +43,9 @@
nodes: nodes,
edges: edges
};
var options = {
width: '400px',
height: '400px',
hover: true,
groups: {
mygroup1: {
color: {
hover: {
background: 'red',
border: 'red'
},
highlight: 'green'
},
shape: 'box'
}
}
};
var options = {};
var network = new vis.Network(container, data, options);
</script>
</body>
</html>

Loading…
Cancel
Save