move_box {consort} | R Documentation |
Move a box grob
Description
This function can be used to move the box to a given position with
editGrob changing the x
and y
value.
Usage
move_box(obj, x = NULL, y = NULL, pos_type = c("absolute", "relative"))
Arguments
obj |
A |
x |
A unit element or a number that can be converted to |
y |
A unit element or a number that can be converted to |
pos_type |
If the provided coordinates are |
Value
A box object with updated x and y coordinates.
Examples
fg <- textbox(text = "This is a test")
fg2 <- move_box(fg, 0.3, 0.3)
[Package consort version 1.2.2 Index]