Skip to main content
All docs
V25.1
  • DxSchedulerTooltipSettings Class

    Contains appointment tooltip settings.

    Namespace: DevExpress.Blazor

    Assembly: DevExpress.Blazor.v25.1.dll

    NuGet Package: DevExpress.Blazor

    Declaration

    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:

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

    Scheduler - Font Style in Tooltips

    Inheritance

    See Also