Search code examples
cytoscape-web

Label display inside nodes cytoscape.js


Is there a way to display a node label centered inside the node such as cytoscape desktop does by default?


Solution

  • Yes, you can control this with the labelValign property as explained in the Wiki StyleObject description. For example:

    var myStyle = {
        selectors: {
            "node": {
                labelValign: "middle",
                ... } } }
    
    $("#cy").cy({style: myStyle, ... })