Skip to content

Instantly share code, notes, and snippets.

@dvas0004
Created October 17, 2017 10:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dvas0004/7a52b8ae48c3c2572023221f17c58b31 to your computer and use it in GitHub Desktop.
Save dvas0004/7a52b8ae48c3c2572023221f17c58b31 to your computer and use it in GitHub Desktop.
internal_nodes = ["192.168.1.1","192.168.2.1"...] //sample data - in reality you'd probably get this from an API
cytoscape_elements = [];
internal_nodes.forEach(function(element){
cytoscape_elements.push({
data: {
id: element,
label: element,
backgroundColor: "internal"
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment