- Home
- Forum
- Xamarin.iOS
- Calendar header background color
Calendar header background color
5 Replies
SP
Subburaj Pandian Veluchamy
Syncfusion Team
April 17, 2019 12:03 PM UTC
Hi Alberto,
Thank you for contacting Syncfusion support.
Your requirement of customzing the Calendar MonthView ViewHeader background color can be achieved using DayHeaderBackgroundColor property of MonthViewSettings in Calendar.
Please refer following code example for the same,
Please refer following code example for the same,
|
[C#]
SFMonthViewSettings monthViewSettings = new SFMonthViewSettings();
monthViewSettings.DayHeaderBackgroundColor = UIColor.Blue;
calendar.MonthViewSettings = monthViewSettings;
|
Note: Since these details not included in our User Guide documentation, we have created task for the same. We will update the same as soon as possible.
Please let us know, if you need any further assistance.
Regards,
Subburaj Pandian V
Subburaj Pandian V
LU
Luca
April 22, 2019 04:54 PM UTC
DayHeaderBackgroundColor doesnt't exist....
using DayLabelBackgroundColor i can change the color of the day but i need to change the header where there is the month name and the 2 arrows
thanks
LU
Luca
April 22, 2019 04:57 PM UTC
ok found this HeaderBackgroundColor
thanks!
LU
Luca
April 22, 2019 09:12 PM UTC
what about selected date background color?
thanks
SP
Subburaj Pandian Veluchamy
Syncfusion Team
April 23, 2019 08:32 AM UTC
Hi Alberto,
Thank you for the update.
Your requirement of customizing the Calendar MonthView Selected date background color can be achieved using DateSelectionColor property of MonthViewSettings in Calendar.
Please refer following code example for the same,
Please refer following code example for the same,
|
[C#]
SFMonthViewSettings monthViewSettings = new SFMonthViewSettings();
monthViewSettings. DateSelectionColor = UIColor.Blue;
calendar.MonthViewSettings = monthViewSettings;
|
You can refer our User Guide documentation for the same,
Regards,
Subburaj Pandian V
Subburaj Pandian V
SIGN IN To post a reply.
- 5 Replies
- 2 Participants
-
LU Luca
- Apr 16, 2019 11:00 PM UTC
- Apr 23, 2019 08:32 AM UTC