Hi,
I try to increase the WeekNumbers font size in UltraMonthViewMulti, but when I set OverrideFontSettings to False, the font size is good but the column is not enough width to display two number WeekNumber.
Regards
Hello,
The WeekNumberUIElement is set to 15 by 15 pixels. If the week number's SizeInPoints is set any larger than 7 (14 by 14 pixels) then they would be clipped.
When OverrideFontSettings are no longer being applied the week numbers bump up to be equl to the day numbers, but there isn't enough room to fit the 15 by 15 ratio.
As our documentation mentions, this is expected as setting OverrideFontSettings to false will cause certain objects to be clipped, in this case the week numbers and the control is not resized.
Let me know if you have any additional questions.
Thank you for your answer Michael,
I'm not sure to understand, I can't change the WeekNumber font-size if I want to see the 2 numbers week numbers ?
Currently with that font is clearly unreadable
This behavior is to be expected when setting OverrideFontSettings to False. To ensure that the week numbers are not clipped I strongly recommend reducing the size of the week numbers by setting the WeekHeaderAppearance.SizeInPoints property.
eg.
this.ultraMonthViewMulti1.CalendarLook.WeekHeaderAppearance.FontData.SizeInPoints = 7;
For more details please visit "OverrideFontSettings Property"
Let me know if you have any questions regarding this matter.