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