setDefaultEdgeLineStyle,RCyjs-method {RCyjs} | R Documentation |
setDefaultEdgeLineStyle
put somewhat more detailed description here
## S4 method for signature 'RCyjs' setDefaultEdgeLineStyle(obj, newValue = c("solid", "dotted", "dashed"))
obj |
an RCyjs instance |
newValue |
a character string, one of "solid", "dotted", or "dashed" |
multi-line description goes here with continuations on subsequent lines if you like
no value returned
if(interactive()){ g <- simpleDemoGraph() rcy <- RCyjs(title="setDefaultEdgeLineStyle", graph=g) layout(rcy, "cose") setDefaultEdgeLineColor(rcy, "dashed") }