Hi,
I'm trying to make several timeline views for ScheduleView. These views should be with the following increments: 1h, 2h, 4h, 12h and 1 day.
The problem I have is that the 1h and 12h view are displayed fine but the 2h, 4h, and day views are displayed with tick length of 6h. Do you know why this is happening?
You can find the code below. I have also a test solution if you need more details.
Thanks
I'm trying to make several timeline views for ScheduleView. These views should be with the following increments: 1h, 2h, 4h, 12h and 1 day.
The problem I have is that the 1h and 12h view are displayed fine but the 2h, 4h, and day views are displayed with tick length of 6h. Do you know why this is happening?
You can find the code below. I have also a test solution if you need more details.
<
scheduleView:RadScheduleView
x:Name
=
"ScheduleView"
Margin
=
"2"
Grid.Column
=
"2"
AppointmentsSource
=
"{Binding Appointments}"
>
<
scheduleView:RadScheduleView.ViewDefinitions
>
<
scheduleView:TimelineViewDefinition
Title
=
"1h timeline"
MajorTickLength
=
"1h"
MinorTickLength
=
"1h"
VisibleDays
=
"7"
MinTimeRulerExtent
=
"10000"
/>
<
scheduleView:TimelineViewDefinition
Title
=
"2h timeline"
MajorTickLength
=
"2h"
MinorTickLength
=
"2h"
VisibleDays
=
"14"
MinTimeRulerExtent
=
"5000"
/>
<
scheduleView:TimelineViewDefinition
Title
=
"4h timeline"
MajorTickLength
=
"4h"
MinorTickLength
=
"4h"
VisibleDays
=
"14"
MinTimeRulerExtent
=
"5000"
/>
<
scheduleView:TimelineViewDefinition
Title
=
"12h timeline"
MajorTickLength
=
"12h"
MinorTickLength
=
"12h"
VisibleDays
=
"14"
MinTimeRulerExtent
=
"2000"
/>
<
scheduleView:TimelineViewDefinition
Title
=
"day timeline"
MajorTickLength
=
"1.00:00:00"
MinorTickLength
=
"1.00:00:00"
VisibleDays
=
"28"
MinTimeRulerExtent
=
"2500"
/>
</
scheduleView:RadScheduleView.ViewDefinitions
>
</
scheduleView:RadScheduleView
>
Thanks