Number of events

Attached is a screenshot.  It's only shows 3 events per day, even though there are more.  I have it customized that when a users click on a work order it displays more information in a messagebox.  Not sure if that has anything to do with it.  How can I get all the events to show? 

Any advice?  

schedule2.jpg


2 Replies

SB Sweatha Bharathi Syncfusion Team January 20, 2025 01:32 PM UTC

Hi Jeff ,


Currently, we are exploring the possibilities to meet your requirement and need additional time for analysis. We will provide an update on or before January 22, 2025.



Regards,
Sweatha.B


SB Sweatha Bharathi Syncfusion Team January 22, 2025 02:05 PM UTC

Hi Jeff ,

To meet your requirement of displaying all events in the Month view type, you can access the schedule grid using the GetScheduleHost method. From there, you can utilize the QueryRowHeight event to set the height for the month view rows. Please refer to the code snippet below. Review the snippet and let us know if you have any further concerns

Code snippet:

var scheduleGrid = this.scheduleControl1.GetScheduleHost();

scheduleGrid.QueryRowHeight += ScheduleGrid_QueryRowHeight;

  private void ScheduleGrid_QueryRowHeight(object sender, Syncfusion.Windows.Forms.Grid.GridRowColSizeEventArgs e)
 {
     if (scheduleControl1.ScheduleType == ScheduleViewType.Month)
     {
         e.Size = 60;
         e.Handled = true;      
     }
 }


Regards,
Sweatha.B

Loader.
Up arrow icon