DxScheduler.ShowAppointmentTooltip Property
Specifies whether to show an appointment’s tooltip.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v24.2.dll
NuGet Package: DevExpress.Blazor
Declaration
[DefaultValue(true)]
[Parameter]
public bool ShowAppointmentTooltip { get; set; }
Property Value
Type | Default | Description |
---|---|---|
Boolean | true |
|
Remarks
If you set the ShowAppointmentTooltip
property to false
, the scheduler does not show a tooltip when a user clicks an appointment.
@using Data
<DxScheduler StartDate="@DateTime.Today"
DataStorage="@DataStorage"
ShowAppointmentTooltip="false">
<DxSchedulerWeekView />
</DxScheduler>
@code {
DxSchedulerDataStorage DataStorage = new DxSchedulerDataStorage() {
AppointmentsSource = AppointmentCollection.GetAppointments(),
AppointmentMappings = new DxSchedulerAppointmentMappings() {
Type = "AppointmentType",
Start = "StartDate",
End = "EndDate",
Subject = "Caption",
AllDay = "AllDay",
Location = "Location",
Description = "Description",
LabelId = "Label",
StatusId = "Status",
RecurrenceInfo = "Recurrence"
}
};
}
You can also customize the tooltip’s layout and appearance.
See Also