When a ggsurvfit plot includes a risk table, a white border is automatically added around the entire plot and risk table. This gets apparent when setting panel and background fills.
How can I remove this white border around the plot?
library(ggsurvfit)
library(survival)
survfit2(Surv(time, status) ~ surg, data = df_colon) |>
ggsurvfit() +
add_risktable(theme = list(
theme_risktable_default(),
theme(
panel.background = element_rect(fill = "beige"),
plot.background = element_rect(fill = "beige", color = "beige")
)
)) +
theme(
panel.background = element_rect(fill = "beige"),
plot.background = element_rect(fill = "beige", color = "beige"),
legend.background = element_rect(fill = "transparent")
)
First, change the default layout.
Then run your code: