How to change purple color of current date

How can I change the default purple of the current day? All other dates are possible to change.

In my XAML I use

``

<Color x:Key="SfCalendarDateSelectionColor">#f4bb29</Color>   # (<< dark yellow)


``


And this works if I choose any other date (see screenshot). But if I select today, the circle is purple.

Capture (1).png

Thanks!




3 Replies

SS SaiGanesh Sakthivel Syncfusion Team August 12, 2021 09:03 AM UTC

 
Thank you for using Syncfusion products. 
 
#Regarding how to change the TodaySelectionBackgroundColor 
We have checked the reported query at our end. Your requirement can be achieved by setting the "TodaySelectionBackgroundColor" property from the "MonthViewSettings" in SfSchedule. Please refer to the following code snippet for your reference. 
 
Code Snippet 
<calendar:SfCalendar x:Name="Calendar"                              > 
    <calendar:SfCalendar.MonthViewSettings> 
        <calendar:MonthViewSettings TodaySelectionBackgroundColor="Red"/> 
    </calendar:SfCalendar.MonthViewSettings> 
</calendar:SfCalendar> 
 
Please refer to the following UG documentation for your reference. 
 
Please let us know if you need any further assistance. 
 
Regards, 
SaiGanesh Sakthivel 



RH Robert Hudson August 12, 2021 08:09 PM UTC

That worked, thanks so much!


I was looking for a 



SS SaiGanesh Sakthivel Syncfusion Team August 13, 2021 06:22 AM UTC

 Hi Robert,  
  
Thank you for the update.  
  
We are glad to know that you have achieved your requirement. Please let us know if you need any further assistance.  
  
Regards,  
SaiGanesh Sakthivel 


Loader.
Up arrow icon