WebMonthView™ by default shows the Weekends compressed as one day. You can change this functionality if you want by setting the WeekendDisplayFormat property.
The code below shows the setting of this property using the WeekendDisplayFormat enumeration.
In Visual Basic:
Imports Infragistics.WebUI.WebSchedule ... Private Sub Page_Load(ByVal sender As System.Object, ByVal e _ As System.EventArgs) Handles MyBase.Load Me.WebMonthView1.WeekendDisplayFormat = WeekendDisplayFormat.Full End Sub
In C#:
using Infragistics.WebUI.WebSchedule; ... private void Page_Load(object sender, System.EventArgs e) { this.WebMonthView1.WeekendDisplayFormat = WeekendDisplayFormat.Full; }