R/add-grob.r
gtable_add_grob.Rd
This only adds grobs into the table - it doesn't affect the table in any way. In the gtable model, grobs always fill up the complete table cell. If you want custom justification you might need to
gtable_add_grob(x, grobs, t, l, b = t, r = l, z = Inf, clip = "on", name = x$name)
x | a |
---|---|
grobs | a single grob or a list of grobs |
t | a numeric vector giving the top extent of the grobs |
l | a numeric vector giving the left extent of the grobs |
b | a numeric vector giving the bottom extent of the grobs |
r | a numeric vector giving the right extent of the grobs |
z | a numeric vector giving the order in which the grobs should be
plotted. Use |
clip | should drawing be clipped to the specified cells
( |
name | name of the grob - used to modify the grob name before it's plotted. |