[]
Scheduler provides the following predefined data views that determine the style used in the control:
| View | Description |
|---|---|
Day Day View |
Displays a detailed view showing appointments for a particular day. |
TimeLine TimeLine View |
Displays appointments in a horizontal time line. |
Month Month View |
Displays appointments for one or more months. |
Week Week View |
Displays appointments for specified work days. |
WorkWeek WorkWeek View |
Displays appointments for any given weekly period. The default is Monday through Friday. |
The default data view for the Scheduler control is Month view. However, you can change the default data view by setting the ViewType property. This property determines which style should be used in the control using the ViewType enumeration.
xml
<c1:C1Scheduler x:Name="scheduler" ViewType="Day"></c1:C1Scheduler>
csharp
scheduler.ViewType = ViewType.Day;