is probably a good place to start.
Dennis
> --
> You received this message because you are subscribed to the ggplot2 mailing list.
> Please provide a reproducible example: http://gist.github.com/270442
>
> To post: email ggp...@googlegroups.com
> To unsubscribe: email ggplot2+u...@googlegroups.com
> More options: http://groups.google.com/group/ggplot2
>
> theme_rect
function (fill = NA, colour = "black", size = 0.5, linetype = 1)
{
structure(function(x = 0.5, y = 0.5, width = 1, height = 1,
...) {
rectGrob(x, y, width, height, ..., gp = gpar(lwd = size *
.pt, col = colour, fill = fill, lty = linetype),
)
}, class = "theme", type = "box", call = match.call())
}
<environment: namespace:ggplot2>
(see the line starting with structure).
I tried to modify the function to accept a height argument, but
unsurprisingly, it didn't fly because the argument clashes with
previous code used to render the plot. You may have to try the grid
package to change strip heights, or wait to see if one of the
developers chimes in with a solution.
Sorry for the noise,
Dennis