Skip to main content

DxScheduler.ShowAppointmentTooltip Property

Specifies whether to show an appointment’s tooltip.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v23.2.dll

NuGet Package: DevExpress.Blazor

Declaration

[DefaultValue(true)]
[Parameter]
public bool ShowAppointmentTooltip { get; set; }

Property Value

Type Default Description
Boolean true

true to show an appointment’s tooltip; otherwise, false.

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"
        }
    };
}

Run Demo

You can also customize the tooltip’s layout and appearance.

See Also