This is a migrated thread and some comments may be shown as answers.

Slow down when maximizing or minimizing

1 Answer 66 Views
ScheduleView
This is a migrated thread and some comments may be shown as answers.
Cristian
Top achievements
Rank 1
Cristian asked on 23 May 2011, 03:23 PM
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:

<

 

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?

1 Answer, 1 is accepted

Sort by
0
Valeri Hristov
Telerik team
answered on 26 May 2011, 10:11 AM
Hello Cristian,

You should set the TickLength property of the FixedTickLengthProvider:

<telerik:FixedTickLengthProvider TickLength="1:0:0" />

TickLength is a TimeSpan that specified the duration between the ticks.

Regards,
Valeri Hristov
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
Tags
ScheduleView
Asked by
Cristian
Top achievements
Rank 1
Answers by
Valeri Hristov
Telerik team
Share this question
or