Learn R Programming

RCy3 (version 1.2.0)

setEdgeFontSizeDirect: setEdgeFontSizeDirect

Description

In the specified CytoscapeWindow, set the font size of the specified edge or edges.

Usage

setEdgeFontSizeDirect(obj, edge.names, new.value)

Arguments

obj
a CytoscapeWindowClass object.
edge.names
one or more String objects, cy2-style edge names.
new.value
an integer objects, specifying the font size in pixels.

Value

None.

See Also

setNodeFontSizeDirect setEdgeLabelColorDirect setEdgeLabelDirect setEdgeLabelOpacityDirect

Examples

Run this code
  # first, delete existing windows to save memory:
  deleteAllWindows(CytoscapeConnection())

  cw <- CytoscapeWindow ('setEdgeFontSizeDirect.test', graph=makeSimpleGraph())
  displayGraph (cw)
  layoutNetwork(cw, 'force-directed')
  edge.names = as.character (cy2.edge.names (cw@graph)) [1:2]
  setEdgeLabelDirect (cw, edge.names, '250')
  for (i in 8:30) {
    setEdgeFontSizeDirect (cw, edge.names, i)
    }
  setEdgeFontSizeDirect (cw, edge.names, 12)

Run the code above in your browser using DataLab