setVisualStyleR Documentation

setVisualStyle

Description

Cytoscape provides a number of canned visual styles. You can also create your own. Use this method to establish an (already-defined) visual style as the style which governs the display of a network in the specified CytoscapeWindow object.

Usage

setVisualStyle(obj, new.style.name)

Arguments

obj a CytoscapeWindowClass object.
new.style.name a character string specifying the name of an existing style you wish to use.

Value

Nothing.

Author(s)

Paul Shannon

See Also

getVisualStyleNames copyVisualStyle

Examples


  window.name = 'demo.setVisualStyle'
  cw = new.CytoscapeWindow (window.name, graph=makeSimpleGraph ())
  displayGraph (cw)
  redraw (cw)
  layoutNetwork (cw)

  styles = getVisualStyleNames (cw)
   # now cycle through the currently defined styles
  for (style in styles) {
    print (paste ("about to set new style:", style))
    setVisualStyle (cw, style)
    }