Skip to main content
All docs
V25.1

SchedulerPopupSettingsBase.MaxHeight Property

Specifies the maximum height of the Scheduler pop-up element (extended/compact appointment form, or tooltip).

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v25.1.dll

NuGet Package: DevExpress.Blazor

Declaration

[DefaultValue(null)]
[Parameter]
public virtual string MaxHeight { get; set; }

Property Value

Type Default Description
String null

The maximum height in CSS units.

Remarks

Use the following properties to restrict the appointment form or tooltip size:

  • MaxHeight
  • MinHeight
  • MaxWidth
  • MinWidth

When choosing height and width values, note that an appointment form (compact or extended) can automatically display a scroll bar when the content height is greater than the element height.

<DxScheduler StartDate="DateTime.Today"
             DataStorage="DataStorage">
    <Views>
        <DxSchedulerDayView ShowWorkTimeOnly="true" />
    </Views>
    <PopupSettings>
        <DxSchedulerFormSettings MaxHeight="700px" MaxWidth="1200px" />
    </PopupSettings>
</DxScheduler>

The Height and Width properties allow you to specify the exact pop-up element size.

See Also