maui-devexpress-dot-maui-dot-scheduler-dot-datasource-0ba2fbe8.md
Gets or sets a collection of objects that stores appointment label (category) information. This is a bindable property.
Namespace : DevExpress.Maui.Scheduler
Assembly : DevExpress.Maui.Scheduler.dll
NuGet Package : DevExpress.Maui.Scheduler
public object AppointmentLabelsSource { get; set; }
| Type | Description |
|---|---|
| System.Object |
The collection of objects that contain appointment label information.
|
Use the AppointmentLabelsSource property to provide a data source for the scheduler’s appointment labels.
Important
Appointment label mappings are required. Use the AppointmentLabelMappings property to map label properties to data source fields.
This example shows how to bind a DayView instance to a data source that stores custom appointment ( MedicalAppointment ) and label ( MedicalAppointmentType ) objects.
See Also