blazor-devexpress-dot-blazor-e5be5ae9.md
Contains appointment tooltip settings.
Namespace : DevExpress.Blazor
Assembly : DevExpress.Blazor.v25.2.dll
NuGet Package : DevExpress.Blazor
public class DxSchedulerTooltipSettings :
SchedulerPopupSettingsBase
Declare the DxSchedulerTooltipSettings object in the PopupSettings tag to specify the following properties:
The following example applies italic font style to tooltips:
<DxScheduler StartDate="DateTime.Today"
DataStorage="DataStorage"
CssClass="my-scheduler">
<Views>
<DxSchedulerDayView ShowWorkTimeOnly="true" />
</Views>
<PopupSettings>
<DxSchedulerTooltipSettings CssClass="custom-style" />
</PopupSettings>
</DxScheduler>
.custom-style {
font-style: italic;
}
Object ComponentBase SchedulerPopupSettingsBase DxSchedulerTooltipSettings
See Also