Learn R Programming

RCytoscape (version 1.22.0)

setNodeSizeDirect: setNodeSizeDirect

Description

In the specified CytoscapeWindow, set the size of the specified node. Not that the node dimensions (size and size) must be locked (the default state) for this to work. Node height and width change together.

Usage

setNodeSizeDirect(obj, node.names, new.sizes)

Arguments

obj
a CytoscapeWindowClass object.
node.names
one or more String objects.
new.sizes
one or more integers, in pixel units.

Value

None.

See Also

lockNodeDimensions setNodeWidthDirect setNodeHeightDirect

Examples

Run this code
  cw <- new.CytoscapeWindow ('setNodeSizeDirect.test', graph=makeSimpleGraph())
  displayGraph (cw)
  redraw (cw)
  layoutNetwork(cw, 'jgraph-spring')
  setNodeSizeDirect (cw, 'A', 32)
  redraw (cw)

Run the code above in your browser using DataLab