Here is my working example:
library(ggplot2) library(directlabels) # ver 2014.6.13 via r-forge DF <- expand.grid(z = seq(1, 3001, by=10), k = seq(from=0.5, to=5, by=0.25)) # Defines the function value for each zk combination DF$dT <- with(DF, -0.07 * z * (1/2.75 - 1/k)) p <- ggplot(DF, aes(x = z, y = k, z = dT)) + theme_bw() + stat_contour(aes(colour=..level..), breaks=c(seq(from=-40, to=0, by=5), c(seq(from=5, to=150, by=10)))) angled.boxes <- list("far.from.others.borders","calc.boxes","enlarge.box","draw.rects") direct.label(p, "angled.boxes")
Which looks like this: 
I want to change the box border color to βwhiteβ, but I donβt see how to do it. The NEWS for the package says:
2.5 --- April 6, 2012
draw.rects with custom color, black by default.
And seeing that "angled.boxes" is a list containing:
angled.boxes <- list("far.from.others.borders","calc.boxes","enlarge.box","draw.rects")
I suppose it's possible, but how?