There are examples available of changing marker size in plotly objects created with vistime() (e.g. as below), but I am having trouble figuring out how to do the same thing for a ggplot2 object made with gg_vistime(). Ideally I would like to be able to specify both the marker size and the label font size. Is there a way to do this?
library(vistime)
dat <- data.frame(event = 1:4, start = c("2019-01-01", "2019-01-10"))
p <- vistime(dat)
# step 1: transform into a list
pp <- plotly::plotly_build(p)
# step 2: loop over pp$x$data, and change the marker size of all text elements to 50px
for(i in seq_along(pp$x$data)){
if(pp$x$data[[i]]$mode == "markers") pp$x$data[[i]]$marker$size <- 20
}
# or, using purrr:
# marker_idx <- which(purrr::map_chr(pp$x$data, "mode") == "markers")
# for(i in marker_idx) pp$x$data[[i]]$marker$size <- 20
# pp
pp
I figured out separate solutions for marker size and label size since gg_vistime() utilizes geom_text_repel() for the labels which doesn't store a size parameter in aes.