Hello,
I need to add more text to a day in the month view single. Currently I am using notes but I can't seem seem to get the proper spacing to display all the information that I want. Is there a way to control the text and font of the day, or change the spacing of the notes?
Below is what it currently looks like:
Hello Alkali Feldspar,
Alkali Feldspar said:Is there a way to control the text and font of the day, or change the spacing of the notes?
If I understand well your requirements, maybe one possible approach to modify the Font size of your appointments, could be through your UltraCalendarLook. You could add UltraCalendarLook to your UltraMonthViewSingle controls and use the properties:
ultraCalendarLook1.AppointmentAppearance.FontData.SizeInPoints = 12F;ultraCalendarLook1.AppointmentAppearance.FontData.Bold = Infragistics.Win.DefaultableBoolean.False;ultraCalendarLook1.AppointmentAppearance.FontData.Italic = Infragistics.Win.DefaultableBoolean.False;ultraCalendarLook1.AppointmentAppearance.FontData.Strikeout = Infragistics.Win.DefaultableBoolean.True;ultraCalendarLook1.AppointmentAppearance.ForeColor = Color.Red;
Let me know if you have any questions
Changing the fond size does allow for more text to display.
I am still wondering if there is a way to reduce the amount of space between appointments / notes to allow me to display more of them in a day. As well, is it possible to have a note display more than on line of text?
Thanks,