layoutSelectionInGridInferAnchorm: layoutSelectionInGridInferAnchor

Description Usage Arguments Details Value Examples

Description

layoutSelectionInGridInferAnchor the top-most, left-most of the selected nodes is the anchor

Usage

1
2
## S4 method for signature 'RCyjs'
layoutSelectionInGridInferAnchor(obj, w, h)

Arguments

obj

an RCyjs instance

w

numeric, the width of the grid box

h

numeric, the height of the grid box

Details

anchor (the top left) of the grid is the location of the topmost/leftmost node, then arrange all the selected nodes in a box anchored here.

Value

explain what the method returns

Examples

1
2
3
4
5
6
7
8
9
if(interactive()){
   g <- simpleDemoGraph()
   rcy <- RCyjs(title="rcyjs demo", graph=g)
   layout(rcy, "cose")
   fit(rcy, 100)
   loadStyleFile(rcy, system.file(package="RCyjs", "extdata", "sampleStyle2.js"));
   selectNodes(rcy, nodes(g))
   layoutSelectionInGrid(rcy, -1000, 10, 100, 400)
   }

RCyjs documentation built on Nov. 8, 2020, 8:20 p.m.