Back to Devexpress

DxSchedulerTooltipSettings Class

blazor-devexpress-dot-blazor-e5be5ae9.md

latest2.6 KB
Original Source

DxSchedulerTooltipSettings Class

Contains appointment tooltip settings.

Namespace : DevExpress.Blazor

Assembly : DevExpress.Blazor.v25.2.dll

NuGet Package : DevExpress.Blazor

Declaration

csharp
public class DxSchedulerTooltipSettings :
    SchedulerPopupSettingsBase

Remarks

Declare the DxSchedulerTooltipSettings object in the PopupSettings tag to specify the following properties:

The following example applies italic font style to tooltips:

razor
<DxScheduler StartDate="DateTime.Today"
             DataStorage="DataStorage"
             CssClass="my-scheduler">
    <Views>
        <DxSchedulerDayView ShowWorkTimeOnly="true" />
    </Views>
    <PopupSettings>
        <DxSchedulerTooltipSettings CssClass="custom-style" />
    </PopupSettings>
</DxScheduler>
css
.custom-style {
    font-style: italic;
}

Implements

IComponent

IHandleEvent

IHandleAfterRender

IDisposable

Inheritance

Object ComponentBase SchedulerPopupSettingsBase DxSchedulerTooltipSettings

See Also

DxSchedulerTooltipSettings Members

DevExpress.Blazor Namespace