# Agenda View | WPF Controls | DevExpress Documentation

The Agenda View is a chronological list of appointments grouped by day. 

To show the view, set the [SchedulerControl.ActiveViewIndex](/WPF/DevExpress.Xpf.Scheduling.SchedulerControl.ActiveViewIndex) property to the necessary view index in the [SchedulerControl.Views](/WPF/DevExpress.Xpf.Scheduling.SchedulerControl.Views) collection, which stores all views defined in the scheduler.

Note

The SchedulerControl has all views with the default settings enabled out-of-the-box. If you declare any view in XAML or create views using the SchedulerControl’s [smart tag](/WPF/119608/controls-and-libraries/scheduler/design-time-features/smart-tag/manage-views), only the declared views become available. You can specify any number of views with the same type and different settings.

![WpfScheduler_AgendaView](/WPF/images/wpfscheduler_agendaview.png)

The Agenda view is the [AgendaView](/WPF/DevExpress.Xpf.Scheduling.AgendaView) class in the Scheduler API. It inherits the [ViewBase](/WPF/DevExpress.Xpf.Scheduling.ViewBase) class.

The following properties affect the view’s appearance and functionality:

| Property | Description |
| --- | --- |
| [AgendaView.DayCount](/WPF/DevExpress.Xpf.Scheduling.AgendaView.DayCount) | Gets or sets the number of consecutive days displayed in the [Agenda View](/WPF/400420/controls-and-libraries/scheduler/views/agenda-view). This is a dependency property. |
| [AgendaView.Days](/WPF/DevExpress.Xpf.Scheduling.AgendaView.Days) | Specifies the collection of System.DateTime values representing the days displayed in the [Agenda View](/WPF/400420/controls-and-libraries/scheduler/views/agenda-view). |
| [AgendaView.ShowAppointmentArrowImages](/WPF/DevExpress.Xpf.Scheduling.AgendaView.ShowAppointmentArrowImages) | Gets or sets whether to display arrows that indicate [appointments](/WPF/119212/controls-and-libraries/scheduler/appointments/appointment) that last more than one day. This is a dependency property. |
| [AgendaView.ShowAppointmentDescription](/WPF/DevExpress.Xpf.Scheduling.AgendaView.ShowAppointmentDescription) | Gets or sets whether to display descriptions within [appointments](/WPF/119212/controls-and-libraries/scheduler/appointments/appointment). This is a dependency property. |
| [AgendaView.ShowAppointmentInterval](/WPF/DevExpress.Xpf.Scheduling.AgendaView.ShowAppointmentInterval) | Gets or sets whether to display an [appointment](/WPF/119212/controls-and-libraries/scheduler/appointments/appointment)‘s start and end date and time. This is a dependency property. |
| [AgendaView.ShowAppointmentLabel](/WPF/DevExpress.Xpf.Scheduling.AgendaView.ShowAppointmentLabel) | Gets or sets whether to display [labels](/WPF/119214/controls-and-libraries/scheduler/appointments/labels) within [appointments](/WPF/119212/controls-and-libraries/scheduler/appointments/appointment). This is a dependency property. |
| [AgendaView.ShowAppointmentLocation](/WPF/DevExpress.Xpf.Scheduling.AgendaView.ShowAppointmentLocation) | Gets or sets whether to display the [appointment](/WPF/119212/controls-and-libraries/scheduler/appointments/appointment)‘s location. This is a dependency property. |
| [AgendaView.ShowAppointmentRecurrenceImage](/WPF/DevExpress.Xpf.Scheduling.AgendaView.ShowAppointmentRecurrenceImage) | Gets or sets whether to display icons that indicate [recurring appointments](/WPF/119213/controls-and-libraries/scheduler/appointments/recurrence). This is a dependency property. |
| [AgendaView.ShowAppointmentReminderImage](/WPF/DevExpress.Xpf.Scheduling.AgendaView.ShowAppointmentReminderImage) | Gets or sets whether to display icons that indicate [appointments](/WPF/119212/controls-and-libraries/scheduler/appointments/appointment) that have [reminders](/WPF/119237/controls-and-libraries/scheduler/reminders). This is a dependency property. |
| [AgendaView.ShowAppointmentResource](/WPF/DevExpress.Xpf.Scheduling.AgendaView.ShowAppointmentResource) | Gets or sets whether to display the [resource](/WPF/119219/controls-and-libraries/scheduler/resources) name within appointments. This is a dependency property. |
| [AgendaView.ShowAppointmentStatus](/WPF/DevExpress.Xpf.Scheduling.AgendaView.ShowAppointmentStatus) | Gets or sets whether to display the [status indicator](/WPF/119215/controls-and-libraries/scheduler/appointments/statuses) within appointments. This is a dependency property. |
| [AgendaView.HorizontalScrollBarVisibility](/WPF/DevExpress.Xpf.Scheduling.SchedulerViewBase.HorizontalScrollBarVisibility) | Gets or sets the horizontal scrollbar visibility mode. This is a dependency property. |
| [AgendaView.VerticalScrollBarVisibility](/WPF/DevExpress.Xpf.Scheduling.SchedulerViewBase.VerticalScrollBarVisibility) | Gets or sets the vertical scrollbar visibility mode. This is a dependency property. |