How to make a uniform color for a set of nodes in neovis.js / vis.js

Multi tool use
Multi tool use












0














I am working with Neo4j application. And it creates nodal graph. To display the nodal graph on UI , we have Neovis.js. Neovis.js name taken from vis.js. The output that i get is -



Neovis Nodal graph



Here in the picture, all the nodes have a different color. We have relationships like Department, Function, System, Parameter,etc. I want a uniform color for all the nodes with relationship - Parameter and all the nodes with relationship - Department, etc. As in this pic -



uniform colored nodes



Please suggest changes in the following codes. It will be very useful.



code -



visjs in Neovis.js



visjs: {
interaction: {
hover: true,
hoverConnectedEdges: true,
selectConnectedEdges: false,
// multiselect: true,
multiselect: 'alwaysOn',
zoomView: false,
experimental: { }
},
physics: {
barnesHut: {
damping: 0.1
}
},
nodes: {
mass: 4,
shape: 'neo',
labelHighlightBold: false,
widthConstraint: {
maximum: 40
},
heightConstraint: {
maximum: 40
}
},
edges: {
hoverWidth: 0,
selectionWidth: 0,
smooth: {
type: 'continuous',
roundness: 0.15
},
font: {
size: 9,
strokeWidth: 0,
align: 'top'
},
color: {
inherit: false
},
arrows: {
to: {
enabled: true,
type: 'arrow',
scaleFactor: 0.5
}
}
}

}


front-end Neovis.js to display nodes



      var config = {
container_id: "viz",
server_url: "bolt://localhost:7474/",
server_user: "neo4j",
server_password: "ib1",
labels: {
//"Character": "name",
"Banking": {
"caption": "name",
"size": "pagerank",
community: "community",

"sizeCypher": "MATCH (n) WHERE id(n) = {id} MATCH (n)-[r]-() RETURN sum(r.weight) AS c"
},
"Parameter": {
"thickness": "weight",
"caption": true,
community: "community",
"sizeCypher": "MATCH (n) WHERE id(n) = {id} MATCH (n)-[r]-() RETURN sum(r.weight) AS c"
},
"Method": {
"thickness": "weight",
"caption": true,
community: "community",
"sizeCypher": "MATCH (n) WHERE id(n) = {id} MATCH (n)-[r]-() RETURN sum(r.weight) AS c"
},
"Request": {
"thickness": "weight",
"caption": true,
community: "community",
},
"Response": {
"thickness": "weight",
"caption": true,
"community": "Pink"
},
"Paths": {
"thickness": "weight",
"caption": true,
"community": "Purple"
},
"API": {
"thickness": "weight",
"caption": true,
"community": "Black"
},
"Department": {
"thickness": "weight",
"caption": true,
community: "community",
"sizeCypher": "MATCH (n) WHERE id(n) = {id} MATCH (n)-[r]-() RETURN sum(r.weight) AS c"
},
"System": {
"thickness": "weight",
"caption": true,
"community": "Red"
},

},
relationships: {
"Parameter": {
thickness: "weight",
caption: true,
community: "community",
color:'red'
},
"Method": {
"thickness": "weight",
"caption": true,
"community": "Blue",
'color':'red'
},
"Request": {
"thickness": "weight",
"caption": true,
"community": "Red",
'color':'green'
},
"Response": {
"thickness": "weight",
"caption": true,
"community": "Red",
'color':'black'
},
"Paths": {
"thickness": "weight",
"caption": true,
"community": "Red",
'color':'pink'
},
"API": {
"thickness": "weight",
"caption": true,
"community": "Red",
'color':'pink'
},
"Department": {
"thickness": "weight",
"caption": true,
"community": "Red",
'color':'pink'
},
"System": {
"thickness": "weight",
"caption": true,
"community": "Red",
'color':'pink'
},
},

initial_cypher:cypherQuery ,
arrows: true,
hierarchical_layout:true,
hierarchical_sort_method:"directed",

};









share|improve this question





























    0














    I am working with Neo4j application. And it creates nodal graph. To display the nodal graph on UI , we have Neovis.js. Neovis.js name taken from vis.js. The output that i get is -



    Neovis Nodal graph



    Here in the picture, all the nodes have a different color. We have relationships like Department, Function, System, Parameter,etc. I want a uniform color for all the nodes with relationship - Parameter and all the nodes with relationship - Department, etc. As in this pic -



    uniform colored nodes



    Please suggest changes in the following codes. It will be very useful.



    code -



    visjs in Neovis.js



    visjs: {
    interaction: {
    hover: true,
    hoverConnectedEdges: true,
    selectConnectedEdges: false,
    // multiselect: true,
    multiselect: 'alwaysOn',
    zoomView: false,
    experimental: { }
    },
    physics: {
    barnesHut: {
    damping: 0.1
    }
    },
    nodes: {
    mass: 4,
    shape: 'neo',
    labelHighlightBold: false,
    widthConstraint: {
    maximum: 40
    },
    heightConstraint: {
    maximum: 40
    }
    },
    edges: {
    hoverWidth: 0,
    selectionWidth: 0,
    smooth: {
    type: 'continuous',
    roundness: 0.15
    },
    font: {
    size: 9,
    strokeWidth: 0,
    align: 'top'
    },
    color: {
    inherit: false
    },
    arrows: {
    to: {
    enabled: true,
    type: 'arrow',
    scaleFactor: 0.5
    }
    }
    }

    }


    front-end Neovis.js to display nodes



          var config = {
    container_id: "viz",
    server_url: "bolt://localhost:7474/",
    server_user: "neo4j",
    server_password: "ib1",
    labels: {
    //"Character": "name",
    "Banking": {
    "caption": "name",
    "size": "pagerank",
    community: "community",

    "sizeCypher": "MATCH (n) WHERE id(n) = {id} MATCH (n)-[r]-() RETURN sum(r.weight) AS c"
    },
    "Parameter": {
    "thickness": "weight",
    "caption": true,
    community: "community",
    "sizeCypher": "MATCH (n) WHERE id(n) = {id} MATCH (n)-[r]-() RETURN sum(r.weight) AS c"
    },
    "Method": {
    "thickness": "weight",
    "caption": true,
    community: "community",
    "sizeCypher": "MATCH (n) WHERE id(n) = {id} MATCH (n)-[r]-() RETURN sum(r.weight) AS c"
    },
    "Request": {
    "thickness": "weight",
    "caption": true,
    community: "community",
    },
    "Response": {
    "thickness": "weight",
    "caption": true,
    "community": "Pink"
    },
    "Paths": {
    "thickness": "weight",
    "caption": true,
    "community": "Purple"
    },
    "API": {
    "thickness": "weight",
    "caption": true,
    "community": "Black"
    },
    "Department": {
    "thickness": "weight",
    "caption": true,
    community: "community",
    "sizeCypher": "MATCH (n) WHERE id(n) = {id} MATCH (n)-[r]-() RETURN sum(r.weight) AS c"
    },
    "System": {
    "thickness": "weight",
    "caption": true,
    "community": "Red"
    },

    },
    relationships: {
    "Parameter": {
    thickness: "weight",
    caption: true,
    community: "community",
    color:'red'
    },
    "Method": {
    "thickness": "weight",
    "caption": true,
    "community": "Blue",
    'color':'red'
    },
    "Request": {
    "thickness": "weight",
    "caption": true,
    "community": "Red",
    'color':'green'
    },
    "Response": {
    "thickness": "weight",
    "caption": true,
    "community": "Red",
    'color':'black'
    },
    "Paths": {
    "thickness": "weight",
    "caption": true,
    "community": "Red",
    'color':'pink'
    },
    "API": {
    "thickness": "weight",
    "caption": true,
    "community": "Red",
    'color':'pink'
    },
    "Department": {
    "thickness": "weight",
    "caption": true,
    "community": "Red",
    'color':'pink'
    },
    "System": {
    "thickness": "weight",
    "caption": true,
    "community": "Red",
    'color':'pink'
    },
    },

    initial_cypher:cypherQuery ,
    arrows: true,
    hierarchical_layout:true,
    hierarchical_sort_method:"directed",

    };









    share|improve this question



























      0












      0








      0







      I am working with Neo4j application. And it creates nodal graph. To display the nodal graph on UI , we have Neovis.js. Neovis.js name taken from vis.js. The output that i get is -



      Neovis Nodal graph



      Here in the picture, all the nodes have a different color. We have relationships like Department, Function, System, Parameter,etc. I want a uniform color for all the nodes with relationship - Parameter and all the nodes with relationship - Department, etc. As in this pic -



      uniform colored nodes



      Please suggest changes in the following codes. It will be very useful.



      code -



      visjs in Neovis.js



      visjs: {
      interaction: {
      hover: true,
      hoverConnectedEdges: true,
      selectConnectedEdges: false,
      // multiselect: true,
      multiselect: 'alwaysOn',
      zoomView: false,
      experimental: { }
      },
      physics: {
      barnesHut: {
      damping: 0.1
      }
      },
      nodes: {
      mass: 4,
      shape: 'neo',
      labelHighlightBold: false,
      widthConstraint: {
      maximum: 40
      },
      heightConstraint: {
      maximum: 40
      }
      },
      edges: {
      hoverWidth: 0,
      selectionWidth: 0,
      smooth: {
      type: 'continuous',
      roundness: 0.15
      },
      font: {
      size: 9,
      strokeWidth: 0,
      align: 'top'
      },
      color: {
      inherit: false
      },
      arrows: {
      to: {
      enabled: true,
      type: 'arrow',
      scaleFactor: 0.5
      }
      }
      }

      }


      front-end Neovis.js to display nodes



            var config = {
      container_id: "viz",
      server_url: "bolt://localhost:7474/",
      server_user: "neo4j",
      server_password: "ib1",
      labels: {
      //"Character": "name",
      "Banking": {
      "caption": "name",
      "size": "pagerank",
      community: "community",

      "sizeCypher": "MATCH (n) WHERE id(n) = {id} MATCH (n)-[r]-() RETURN sum(r.weight) AS c"
      },
      "Parameter": {
      "thickness": "weight",
      "caption": true,
      community: "community",
      "sizeCypher": "MATCH (n) WHERE id(n) = {id} MATCH (n)-[r]-() RETURN sum(r.weight) AS c"
      },
      "Method": {
      "thickness": "weight",
      "caption": true,
      community: "community",
      "sizeCypher": "MATCH (n) WHERE id(n) = {id} MATCH (n)-[r]-() RETURN sum(r.weight) AS c"
      },
      "Request": {
      "thickness": "weight",
      "caption": true,
      community: "community",
      },
      "Response": {
      "thickness": "weight",
      "caption": true,
      "community": "Pink"
      },
      "Paths": {
      "thickness": "weight",
      "caption": true,
      "community": "Purple"
      },
      "API": {
      "thickness": "weight",
      "caption": true,
      "community": "Black"
      },
      "Department": {
      "thickness": "weight",
      "caption": true,
      community: "community",
      "sizeCypher": "MATCH (n) WHERE id(n) = {id} MATCH (n)-[r]-() RETURN sum(r.weight) AS c"
      },
      "System": {
      "thickness": "weight",
      "caption": true,
      "community": "Red"
      },

      },
      relationships: {
      "Parameter": {
      thickness: "weight",
      caption: true,
      community: "community",
      color:'red'
      },
      "Method": {
      "thickness": "weight",
      "caption": true,
      "community": "Blue",
      'color':'red'
      },
      "Request": {
      "thickness": "weight",
      "caption": true,
      "community": "Red",
      'color':'green'
      },
      "Response": {
      "thickness": "weight",
      "caption": true,
      "community": "Red",
      'color':'black'
      },
      "Paths": {
      "thickness": "weight",
      "caption": true,
      "community": "Red",
      'color':'pink'
      },
      "API": {
      "thickness": "weight",
      "caption": true,
      "community": "Red",
      'color':'pink'
      },
      "Department": {
      "thickness": "weight",
      "caption": true,
      "community": "Red",
      'color':'pink'
      },
      "System": {
      "thickness": "weight",
      "caption": true,
      "community": "Red",
      'color':'pink'
      },
      },

      initial_cypher:cypherQuery ,
      arrows: true,
      hierarchical_layout:true,
      hierarchical_sort_method:"directed",

      };









      share|improve this question















      I am working with Neo4j application. And it creates nodal graph. To display the nodal graph on UI , we have Neovis.js. Neovis.js name taken from vis.js. The output that i get is -



      Neovis Nodal graph



      Here in the picture, all the nodes have a different color. We have relationships like Department, Function, System, Parameter,etc. I want a uniform color for all the nodes with relationship - Parameter and all the nodes with relationship - Department, etc. As in this pic -



      uniform colored nodes



      Please suggest changes in the following codes. It will be very useful.



      code -



      visjs in Neovis.js



      visjs: {
      interaction: {
      hover: true,
      hoverConnectedEdges: true,
      selectConnectedEdges: false,
      // multiselect: true,
      multiselect: 'alwaysOn',
      zoomView: false,
      experimental: { }
      },
      physics: {
      barnesHut: {
      damping: 0.1
      }
      },
      nodes: {
      mass: 4,
      shape: 'neo',
      labelHighlightBold: false,
      widthConstraint: {
      maximum: 40
      },
      heightConstraint: {
      maximum: 40
      }
      },
      edges: {
      hoverWidth: 0,
      selectionWidth: 0,
      smooth: {
      type: 'continuous',
      roundness: 0.15
      },
      font: {
      size: 9,
      strokeWidth: 0,
      align: 'top'
      },
      color: {
      inherit: false
      },
      arrows: {
      to: {
      enabled: true,
      type: 'arrow',
      scaleFactor: 0.5
      }
      }
      }

      }


      front-end Neovis.js to display nodes



            var config = {
      container_id: "viz",
      server_url: "bolt://localhost:7474/",
      server_user: "neo4j",
      server_password: "ib1",
      labels: {
      //"Character": "name",
      "Banking": {
      "caption": "name",
      "size": "pagerank",
      community: "community",

      "sizeCypher": "MATCH (n) WHERE id(n) = {id} MATCH (n)-[r]-() RETURN sum(r.weight) AS c"
      },
      "Parameter": {
      "thickness": "weight",
      "caption": true,
      community: "community",
      "sizeCypher": "MATCH (n) WHERE id(n) = {id} MATCH (n)-[r]-() RETURN sum(r.weight) AS c"
      },
      "Method": {
      "thickness": "weight",
      "caption": true,
      community: "community",
      "sizeCypher": "MATCH (n) WHERE id(n) = {id} MATCH (n)-[r]-() RETURN sum(r.weight) AS c"
      },
      "Request": {
      "thickness": "weight",
      "caption": true,
      community: "community",
      },
      "Response": {
      "thickness": "weight",
      "caption": true,
      "community": "Pink"
      },
      "Paths": {
      "thickness": "weight",
      "caption": true,
      "community": "Purple"
      },
      "API": {
      "thickness": "weight",
      "caption": true,
      "community": "Black"
      },
      "Department": {
      "thickness": "weight",
      "caption": true,
      community: "community",
      "sizeCypher": "MATCH (n) WHERE id(n) = {id} MATCH (n)-[r]-() RETURN sum(r.weight) AS c"
      },
      "System": {
      "thickness": "weight",
      "caption": true,
      "community": "Red"
      },

      },
      relationships: {
      "Parameter": {
      thickness: "weight",
      caption: true,
      community: "community",
      color:'red'
      },
      "Method": {
      "thickness": "weight",
      "caption": true,
      "community": "Blue",
      'color':'red'
      },
      "Request": {
      "thickness": "weight",
      "caption": true,
      "community": "Red",
      'color':'green'
      },
      "Response": {
      "thickness": "weight",
      "caption": true,
      "community": "Red",
      'color':'black'
      },
      "Paths": {
      "thickness": "weight",
      "caption": true,
      "community": "Red",
      'color':'pink'
      },
      "API": {
      "thickness": "weight",
      "caption": true,
      "community": "Red",
      'color':'pink'
      },
      "Department": {
      "thickness": "weight",
      "caption": true,
      "community": "Red",
      'color':'pink'
      },
      "System": {
      "thickness": "weight",
      "caption": true,
      "community": "Red",
      'color':'pink'
      },
      },

      initial_cypher:cypherQuery ,
      arrows: true,
      hierarchical_layout:true,
      hierarchical_sort_method:"directed",

      };






      javascript neo4j vis.js neo4jclient vis.js-network






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Dec 27 at 13:36

























      asked Dec 27 at 13:04









      Techdive

      20516




      20516





























          active

          oldest

          votes











          Your Answer






          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "1"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53945584%2fhow-to-make-a-uniform-color-for-a-set-of-nodes-in-neovis-js-vis-js%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown






























          active

          oldest

          votes













          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes
















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.





          Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


          Please pay close attention to the following guidance:


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53945584%2fhow-to-make-a-uniform-color-for-a-set-of-nodes-in-neovis-js-vis-js%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          84Xw,gmKH,xzw2 aQSIe6i4 2B 0wfxDMl7aiYUa8uQ QJ7pUfbLZ
          FgZ5fZInpGyJJQ3MWt,zjB

          Popular posts from this blog

          Monofisismo

          Angular Downloading a file using contenturl with Basic Authentication

          Olmecas