setNodeFontColor,RCyjs-method {RCyjs} | R Documentation |
setNodeFontColor
set the specified nodes to the same specifed node font color
## S4 method for signature 'RCyjs' setNodeFontColor(obj, nodeIDs, newValues)
obj |
an RCyjs instance |
nodeIDs |
a character string (one or more) |
newValues |
a character string, a legal CSS color name (one or more) |
no value returned
if(interactive()){ g <- simpleDemoGraph() rcy <- RCyjs(title="setNodeFontColor", graph=g) layout(rcy, "cose") setNodeFontColor(rcy, "red") }