I have the created a weekly calendar in R below using toastui:
library(toastui)
calendar(view="week", defaultDate = NULL) %>% cal_week_options(workweek = TRUE, hourStart = 7.5, hourEnd = 24)
This line of the code gives the following output:
How can I remove the dates i.e. 21, 22, 23, 24, 25 and just have Monday-Friday as the labels? I have been going through the documentation but I couldn't find a solution. Any suggestion is appreciated.
I found the answer to this question. It is quite simple. According to the documentation one needs to use JS in order to update the names. The code below perfectly displays how the column values are updated: