-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
dayStart and dayEnd for cal_week_options #47
Comments
Those are not valid options according to docs : https://nhn.github.io/tui.calendar/latest/CalendarCore |
You are right because I just made it up 😄 I have the navigation on because this schedule spans two weeks. Maybe there is a way to display two whole weeks in a single view. If so, then I could remove navigation and there is no need for horizontal limits. |
Ok, thanks I understand. calendar(view = "week") %>%
cal_week_options(workweek = TRUE) In month view you can display only two weeks and also remove weekend: calendar(view = "month") %>%
cal_month_options(visibleWeeksCount = 2, workweek = TRUE) |
Ok. So it seems like I need options from both calendar(dfr, view="week", navigation=TRUE, defaultDate=as.Date("2024-06-10")) %>%
cal_week_options(startDayOfWeek = 1, hourStart=8, hourEnd=21, showNowIndicator = TRUE) %>%
cal_month_options(visibleWeeksCount = 2) I think month options don't apply to week view. So this might not be possible at the moment. |
Is it possible to have
dayStart
anddayEnd
forcal_week_options()
?The text was updated successfully, but these errors were encountered: