You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* @param {boolean} [options.useFormPopup=false] - Whether to use the default form popup when creating/modifying events.
133
+
* @param {boolean} [options.useDetailPopup=false] - Whether to use the default detail popup when clicking events.
134
+
* @param {boolean} [options.isReadOnly=false] - Whether the calendar is read-only.
135
+
* @param {boolean} [options.usageStatistics=true] - Whether to allow collect hostname and send the information to google analytics.
136
+
* For more information, check out the {@link https://github.com/nhn/tui.calendar/tree/main/apps/calendar#collect-statistics-on-the-use-of-open-source|documentation}.
137
+
* @param {function} [options.eventFilter] - A function that returns true if the event should be displayed. the default filter checks if the event's `isVisible` property is true.
138
+
* @param {object} [options.week] - Week option of the calendar instance.
139
+
* @param {number} [options.week.startDayOfWeek=0] - Start day of the week. Available values are 0 (Sunday) to 6 (Saturday).
140
+
* @param {Array.<string>} [options.week.dayNames] - Names of days of the week. Should be 7 items starting from Sunday to Saturday. If not specified, the default names are used.
* @param {boolean} [options.week.workweek=false] - Whether to exclude Saturday and Sunday.
143
+
* @param {boolean} [options.week.showTimezoneCollapseButton=true] - Whether to show the timezone collapse button.
144
+
* @param {boolean} [options.week.timezonesCollapsed=false] - Whether to collapse the timezones.
145
+
* @param {number} [options.week.hourStart=0] - Start hour of the day. Available values are 0 to 24.
146
+
* @param {number} [options.week.hourEnd=24] - End hour of the day. Available values are 0 to 24. Must be greater than `hourStart`.
147
+
* @param {boolean} [options.week.narrowWeekend=false] - Whether to narrow down width of weekends to half.
148
+
* @param {boolean|Array.<string>} [options.week.eventView=true] - Determine which view to display events. Available values are 'allday' and 'time'. set to `false` to disable event view.
149
+
* @param {boolean|Array.<string>} [options.week.taskView=true] - Determine which view to display tasks. Available values are 'milestone' and 'task'. set to `false` to disable task view.
150
+
* @param {object} options.month - Month option of the calendar instance.
151
+
* @param {number} [options.month.startDayOfWeek=0] - Start day of the week. Available values are 0 (Sunday) to 6 (Saturday).
152
+
* @param {Array.<string>} [options.month.dayNames] - Names of days of the week. Should be 7 items starting from Sunday to Saturday. If not specified, the default names are used.
* @param {boolean} [options.month.workweek=false] - Whether to exclude Saturday and Sunday.
155
+
* @param {boolean} [options.month.narrowWeekend=false] - Whether to narrow down width of weekends to half.
156
+
* @param {number} [options.month.visibleWeeksCount=0] - Number of weeks to display. 0 means display all weeks.
157
+
* @param {Array.<CalendarInfo>} [options.calendars] - Calendars to group events.
158
+
* @param {boolean|object} [options.gridSelection=true] - Whether to enable grid selection. or it's option. it's enabled when the value is `true` and object and will be disabled when `isReadOnly` is true.
159
+
* @param {boolean} options.gridSelection.enableDbClick - Whether to enable double click to select area.
160
+
* @param {boolean} options.gridSelection.enableClick - Whether to enable click to select area.
161
+
* @param {TimezoneOptions} options.timezone - Timezone option of the calendar instance. For more information about timezone, check out the {@link TODO-GitHub-Options|Options} in guide.
162
+
* @param {Theme} options.theme - Theme option of the calendar instance. For more information, see {@link TODO-GitHub-Theme|Theme} in guide.
163
+
* @param {TemplateConfig} options.template - Template option of the calendar instance. For more information, see {@link TODO-GitHub-Template|Template} in guide.
* @param {Date|string|number|TZDate} date - The date to move. it should be eligible parameter to create a `Date` instance if `date` is string or number.
0 commit comments