DxSchedulerAppointmentLabelItem Class
A label used to categorize appointments in the Scheduler.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v24.1.dll
NuGet Package: DevExpress.Blazor
Declaration
public class DxSchedulerAppointmentLabelItem :
DxSchedulerSourceObjectContainer
Related API Members
The following members return DxSchedulerAppointmentLabelItem objects:
Remarks
You can use color labels to categorize appointments. A label is displayed as an appointment’s background.
When users create or edit an appointment in the Appointment form, they can select the appointment’s label from the drop-down Label list.
The Caption property specifies the label’s text. The Color or BackgroundCssClass property defines the appearance of appointments to which the label is assigned. The TextCssClass specifies a CSS class applied to appointment text.
Note
When you use templates to customize appointment appearance, the Color, BackgroundCssClass, and TextCssClass property values are not applied to appointments. In the template, you can use the context.Label
parameter to access these property values.
Built-In Labels
The Scheduler has a built-in collection of 11 color labels.
- Light (ID: 0)
- Blue (ID: 1)
- Purple (ID: 2)
- Indigo (ID: 3)
- Pink (ID: 4)
- Red (ID: 5)
- Orange (ID: 6)
- Yellow (ID: 7)
- Green (ID: 8)
- Teal (ID: 9)
- Cyan (ID: 10)
Custom Labels
Do the following to create a new collection with your own labels:
- Create a DxSchedulerDataStorage object that uses a constructor without parameters and specify appointment mappings. See the DxSchedulerAppointmentMappings class description for more information.
- Declare a class (for instance,
LabelObject
) that storeslabel settings
and an ID. - Create a collection of label source objects (
LabelObject
class instances) and define their settings. - Assign the newly created collection to the storage’s AppointmentLabelsSource property.
- Assign the DxSchedulerAppointmentLabelMappings object to the AppointmentLabelMappings property. In this object, map the label’s source fields to the label’s properties.
- Optional. You can create custom fields for label items. Define custom fields in the label’s source object and add these fields to the CustomFieldMappings collection. For instance, the following code snippet adds the
MyCustomField
field to theLabelObject
and maps this field to the label’sMyCustomProperty
.
<DxScheduler DataStorage="@DataStorage">
<Views>
<DxSchedulerDayView DayCount="3"
TimeScale="@(new TimeSpan(1,0,0))"
WorkTime="new DxSchedulerTimeSpanRange(TimeSpan.FromHours(9), TimeSpan.FromHours(18))"
VisibleTime="new DxSchedulerTimeSpanRange(TimeSpan.FromHours(8), TimeSpan.FromHours(19))"
TimeIndicatorVisibility="SchedulerTimeIndicatorVisibility.Never">
</DxSchedulerDayView>
<DxSchedulerWeekView ShowWorkTimeOnly="true" />
<DxSchedulerWorkWeekView ShowWorkTimeOnly="true" />
</Views>
<AppointmentCompactFormLayout Context="formInfo">
<DxSchedulerSubjectFormLayoutItem></DxSchedulerSubjectFormLayoutItem>
<DxSchedulerDescriptionFormLayoutItem></DxSchedulerDescriptionFormLayoutItem>
<DxSchedulerLabelFormLayoutItem></DxSchedulerLabelFormLayoutItem>
</AppointmentCompactFormLayout>
</DxScheduler>
@code {
DxSchedulerDataStorage DataStorage = new DxSchedulerDataStorage() {
// Specify appointment mappings here
// ...
AppointmentLabelsSource = LabelCollection.GetLabels(),
AppointmentLabelMappings = new DxSchedulerAppointmentLabelMappings() {
Id = "Id",
Caption = "LabelCaption",
Color = "LabelColor",
// Uncomment the line below and comment the line above to specify other background options.
//BackgroundCssClass = "BackgroundCssClass",
TextCssClass = "TextCssClass",
// Map the source object's custom field to the label's custom property.
CustomFieldMappings = new List<DxSchedulerCustomFieldMapping> {
new DxSchedulerCustomFieldMapping { Name = "MyCustomProperty", Mapping = "MyCustomField" }
}
}
};
}