I want to configure my scheduler to start showing 7 AM (but be able to scroll up to 0 AM).
I have the following config option:
scheduler.config.scroll_hour = 7;
scheduler.init('scheduler')
On the first init, it works fine. But when I navigate away and then come back to the page (and run the same init function again) it ignores the scroll_hour property and starts at 0 AM.
It doesn’t change when I run scheduler.setCurrentView().
Is there a way to do this?
Thanks