Displaying 3 results from an estimated 3 matches for "applyedit".
2009 Sep 27
0
puzzle with drawDetails for a class derived from a gTree
...vp"))
x <- gTree(right=right, left=left, col=col,
childrenvp=cvp,
edits=edits,
name=name, gp=gp, vp=vp,
cl="test")
if(draw)
grid.draw(x)
invisible(x)
}
drawDetails.test <- function(x, recording=TRUE) {
x <- applyEdits(x, x$edits)
## create the two grobs
left <- make.test.left(x$left, x$col)
right <- make.test.right(x$right, x$col)
## add them to the gTree
x <- addGrob(x, right)
x <- addGrob(x, left)
## borrowed from grid.xaxis
## draw the children only
for(child in childNames(x))...
2005 Apr 18
1
R-2.1.0 is released
...llow numeric vectors of justification in
each direction (e.g., so that several pieces of text can have
different justifications).
(suggested by Ross Ihaka)
- New 'edits' argument for grid.xaxis() and grid.yaxis() to
allow specification of on-the-fly edits to axis children.
- applyEdit(x, edit) returns x if target of edit (i.e., child
specified by a gPath) cannot be found.
- Fix for calculation of length of max/min/sum unit. Length is
now (correctly) reported as 1 (was reported as length of first arg).
- Viewport names can now be any string (they used to have to be a...
2005 Apr 18
1
R-2.1.0 is released
...llow numeric vectors of justification in
each direction (e.g., so that several pieces of text can have
different justifications).
(suggested by Ross Ihaka)
- New 'edits' argument for grid.xaxis() and grid.yaxis() to
allow specification of on-the-fly edits to axis children.
- applyEdit(x, edit) returns x if target of edit (i.e., child
specified by a gPath) cannot be found.
- Fix for calculation of length of max/min/sum unit. Length is
now (correctly) reported as 1 (was reported as length of first arg).
- Viewport names can now be any string (they used to have to be a...