var DIR = 'img/soft-scraps-icons/'; var nodes = null; var edges = null; var network = null; // Called when the Visualization API is loaded. function draw() { // create people. // value corresponds with the age of the person var DIR = 'https://randomuser.me/api/portraits/'; nodes = [ { id: 1, shape: 'circularImage', image: DIR + 'women/1.jpg' }, { id: 2, shape: 'circularImage', image: DIR + 'women/2.jpg' }, { id: 3, shape: 'circularImage', image: DIR + 'men/3.jpg' }, { id: 4, shape: 'circularImage', image: DIR + 'women/4.jpg' }, { id: 5, shape: 'circularImage', image: DIR + 'women/28.jpg' }, { id: 6, shape: 'circularImage', image: DIR + 'men/6.jpg' }, { id: 7, shape: 'circularImage', image: DIR + 'women/7.jpg' }, { id: 8, shape: 'circularImage', image: DIR + 'men/8.jpg' }, { id: 9, shape: 'circularImage', image: DIR + 'men/9.jpg' }, { id: 10, shape: 'circularImage', image: DIR + 'women/10.jpg' }, { id: 11, shape: 'circularImage', image: DIR + 'women/11.jpg' }, { id: 12, shape: 'circularImage', image: DIR + 'men/12.jpg' }, { id: 13, shape: 'circularImage', image: DIR + 'women/13.jpg' }, { id: 14, shape: 'circularImage', image: DIR + 'men/14.jpg' }, // {id: 15, shape: 'circularImage', image: DIR + 'missing.png', brokenImage: DIR + 'missingBrokenImage.png', label:"when images\nfail\nto load"}, // {id: 16, shape: 'circularImage', image: DIR + 'anotherMissing.png', brokenImage: DIR + '9.png', label:"fallback image in action"} ]; // create connections between people // value corresponds with the amount of contact between two people edges = [ { from: 1, to: 2 }, { from: 2, to: 3 }, { from: 2, to: 4 }, { from: 4, to: 5 }, { from: 4, to: 10 }, { from: 4, to: 6 }, { from: 6, to: 7 }, { from: 7, to: 8 }, { from: 8, to: 9 }, { from: 8, to: 10 }, { from: 10, to: 11 }, { from: 11, to: 12 }, { from: 12, to: 13 }, { from: 13, to: 14 }, { from: 9, to: 16 } ]; // create a network var container = document.getElementById('mynetwork'); var data = { nodes: nodes, edges: edges }; var options = { manipulation: { editEdge: { editWithoutDrag: function (data, callback) { console.info(data); // alert("The callback data has been logged to the console."); // you can do something with the data here callback(data); } } }, nodes: { borderWidth: 4, size: 30, color: { border: '#222222', background: '#666666' }, font: { color: '#eeeeee' } }, edges: { color: 'lightgray' } }; // @ts-ignore network = new vis.Network(container, data, options); }