DayHoliday
Public holidays designated as days of the week
Signature:
export interface DayHoliday
Example
{
type: "day",
days : [0, 4],
styleName: "custom-holiday",
tooltips : ["Day off","Day off"]
}
Properties
Property | Type | Description |
---|---|---|
days | number[] | days of the week |
enabled | boolean | Availability |
styleName | string | style name |
tooltips | string[] | Tooltips |
type | "day" | Types of holidays |
Properties Desc
days
days of the week
Type
- number[]
Remarks:
Each corresponds to 0~6 from Monday to Sunday.
enabled
Availability
Type
- boolean
styleName
style name
Type
- string
tooltips
Tooltips
Type
- string[]
type
type of holiday
Type
- "day"