Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
395
Month View Single text
posted

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:

  • 53790
    posted

    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