Closed bbmattieu9 closed 3 years ago
This issue has been closed automatically as it did not follow the issue template, please open a new issue that follows the bug report or feature request template.
If you would like to submit a support issue or get a faster reply, please consider sponsoring me.
Thank you! ✌️
Hi, I am using @mattlewis92 angular-calendar to plot events scheduled for each day. I want the Calendar to take a startTime like 11:15AM and its endTime as 11:45AM, then map it on the Day View of the Calendar which has been formatted to display as 13:00 for 1PM and so on.
{ start: addHours(startOfDay(new Date()), 5), end:addHours(startOfDay(this.dummyDate2), 6), }
Above takes an integer number for addHour. I need it to be something like 11:45AM and not the whole number. Please point me to what I have done wrongly. Im using this for the first time. Thanks in advance.