date
Optional. Defines the date that will be opened when the calendar is created
date?: Date | string;
Default value: equals either to the value or to the current date, see below
Example
const calendar = new dhx.Calendar("calendar_container", {
value: new Date(),
date: new Date(2019, 0, 1)
});
Related sample: Calendar. Date initialization
By default, it is either the same as value, or shows the current date, if value is not specified.