Is there a way to display a node label centered inside the node such as cytoscape desktop does by default?
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, ... })