When i set the properties MajorTickLength and MinorTickLength, at TimeLineViewDefinition, to 1day the application slows down when the control is rendered (maximizing or minimizing the window, scrolling, getting focus, ...). Reading the forum if found how to solve this problem out when scrolling (adding a container), but i haven't found a solution for the other issues.
Here it is the definition for the control:
¿Is there anything i can do to speed up control rendering?
Here it is the definition for the control:
<
telerik:RadScheduleView
x:Name="scheduleView"
AppointmentsSource="{Binding ImmovilizationModel.ImmovilizationAppointments}"
GroupDescriptionsSource="{Binding ImmovilizationModel.GroupDescriptions}">
<telerik:RadScheduleView.ViewDefinitions>
<telerik:TimelineViewDefinition>
<telerik:TimelineViewDefinition.MajorTickLength>
<telerik:FixedTickLengthProvider />
</telerik:TimelineViewDefinition.MajorTickLength>
<telerik:TimelineViewDefinition.MinorTickLength>
<telerik:FixedTickLengthProvider />
</telerik:TimelineViewDefinition.MinorTickLength>
</telerik:TimelineViewDefinition>
</telerik:RadScheduleView.ViewDefinitions>
</telerik:RadScheduleView>
¿Is there anything i can do to speed up control rendering?