You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Benjamin Bach edited this page Aug 2, 2021
·
1 revision
window.setTimeout(()=>{vargraph=window.vc.main.getDynamicGraph(dataset.name,sessionId);window.vc.messenger.highlight('set',{nodes: [graph.nodes().get(0)]})},10*1000);// add node 1window.setTimeout(()=>{vargraph=window.vc.main.getDynamicGraph(dataset.name,sessionId);window.vc.messenger.highlight('add',{nodes: [graph.nodes().get(1)]})},11*1000);// show only node 2 and links 0 and 1window.setTimeout(()=>{vargraph=window.vc.main.getDynamicGraph(dataset.name,sessionId);window.vc.messenger.highlight('set',{nodes: [graph.nodes().get(2)],links: [graph.links().get(0),graph.links().get(1)]})},12*1000);// show only node 2window.setTimeout(()=>{vargraph=window.vc.main.getDynamicGraph(dataset.name,sessionId);window.vc.messenger.highlight('set',{nodes: [graph.nodes().get(2)]})},13*1000);// reset all selectionswindow.setTimeout(()=>{vargraph=window.vc.main.getDynamicGraph(dataset.name,sessionId);window.vc.messenger.highlight('reset')},14*1000);// highlight all nodes and one linkwindow.setTimeout(()=>{vargraph=window.vc.main.getDynamicGraph(dataset.name,sessionId);window.vc.messenger.highlight('set',{nodes: graph.nodes().toArray(),links: [graph.links().get(0)]})},15*1000);