Hi,
I am using a WPF Schedule control and need to use 8 minute intervals, however I need the first time to be available each day to start at 6.30am, however it always ends up being 6.24am and 6.32am as the control seems to work the intervals from midnight.
Is there any way to get the first slot to start at 6.30am using 8 minute intervals?
Many thanks
Well if you want every day to actually be displayed as starting at 6:30 then you can set the LogicalDayOffset of the Settings of the XamScheduleDataManager.
Hi Andrew,
I've just tried this and it is saying that XamScheduleDataManager does not contain a definition for LogicalDayOffset. I am running version 13.1 - is this a change in a later version?
Thanks,
It sounds like you tried to set it on the XamScheduleDataManager but it is a property of the ScheduleSettings class. The ScheduleSettings class is exposed on the XamScheduleDataManager via its Settings property. e.g. <ig:XamScheduleDataManager.Settings><ig:ScheduleSettings LogicalDayOffset="06:30:00" /></ig:XamScheduleDataManager.Settings>
That works great.
Many thanks for your help
Peter