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

Timeline Current Time Color

2 Answers 76 Views
Scheduler and Reminder
This is a migrated thread and some comments may be shown as answers.
Yaman
Top achievements
Rank 1
Yaman asked on 05 Jan 2014, 05:44 PM
How I can change the current time color?

2 Answers, 1 is accepted

Sort by
0
Ralitsa
Telerik team
answered on 08 Jan 2014, 11:30 AM
Hi Yaman, 

Thank you for contacting us. 

If you want to change the color of current time thumb, you need to click on 'Edit UI Elements' and change the value of the CurrentTimePointerColor property. I attached an image which demonstrates you how you find the property. 
You can also change programmatically the color of the property. Please take a look at the following code example: 
if (this.radScheduler1.ActiveViewType == SchedulerViewType.Day)
{
    SchedulerDayViewElement schedulerElement = (SchedulerDayViewElement)this.radScheduler1.SchedulerElement.ViewElement;
    schedulerElement.DataAreaElement.Ruler.CurrentTimePointerColor = Color.Green;
}

Hope this will help you. Let me know if you have any other questions.

Regards,
Ralitsa
Telerik
TRY TELERIK'S NEWEST PRODUCT - EQATEC APPLICATION ANALYTICS for WINFORMS.
Learn what features your users use (or don't use) in your application. Know your audience. Target it better. Develop wisely.
Sign up for Free application insights >>
0
Yaman
Top achievements
Rank 1
answered on 09 Jan 2014, 07:13 AM
It's working.
Thanks a lot for your effort
Tags
Scheduler and Reminder
Asked by
Yaman
Top achievements
Rank 1
Answers by
Ralitsa
Telerik team
Yaman
Top achievements
Rank 1
Share this question
or