Hours in Days
Set start time and end time of each day in multiple days feature if you data for each day has some time spaces between items in the day.
You can set your own startDate and endDate time eg. 2023-05-02T00:00:00, 2023-05-05T24:00:00 with start time 00:00:00 and end time eg.24:00:00

Mode schema
| Property | Type | Status |
|---|---|---|
date | string | required |
startTimeHour | string | required |
endTimeHour | string | required |
Example:
const hoursInDays = [
{
date: '2023-05-02',
startTimeHour: '2023-05-02T09:00:00',
endTimeHour: '2023-05-02T16:00:00',
},
{
date: '2023-05-03',
startTimeHour: '2023-05-03T09:00:00',
endTimeHour: '2023-05-03T13:00:00',
},
{
date: '2023-05-04',
startTimeHour: '2023-05-04T09:00:00',
endTimeHour: '2023-05-04T17:00:00',
},
{
date: '2023-05-05',
startTimeHour: '2023-05-05T09:00:00',
endTimeHour: '2023-05-05T15:00:00',
},
];
const { getEpgProps, getLayoutProps } = useEpg({
startDate:"2023-05-02T00:00:00",
endDate:"2023-05-05T24:00:00",
hoursInDays,
...
});