I’m using the React scheduler with a customized timeline. The start and end times of the scheduler are dynamic and, sometimes, the end time can be past midnight. In those cases, i want to show the past midnight hours on the right side instead of the left, that’s why i chose to have a customized timeline.
My config is as follows:
scale={"Manual"}
timeHeaders={[
{ groupBy: "Day", format: "dddd, dd MMMM yyyy" },
{ groupBy: "Hour", format: "HH:mm" },
]}
timeline={[
{
start: 2024-02-21T12:00:00
end: 2024-02-21T23:30:00
},
]}
The thing is, when i try to select a time range, it “selects” all the row. What i want is to have 30 minutes cells but cellDuration={30} doesnt work when scale is set to manual. How can i achieve that?