Back to Devexpress

SchedulerPopupSettingsBase.MinHeight Property

blazor-devexpress-dot-blazor-dot-schedulerpopupsettingsbase-6fae0015.md

latest2.2 KB
Original Source

SchedulerPopupSettingsBase.MinHeight Property

Specifies the minimum height of the Scheduler pop-up element (compact appointment form or tooltip).

Namespace : DevExpress.Blazor

Assembly : DevExpress.Blazor.v25.2.dll

NuGet Package : DevExpress.Blazor

Declaration

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

Property Value

TypeDefaultDescription
Stringnull

The minimum 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.

razor
<DxScheduler StartDate="DateTime.Today"
             DataStorage="DataStorage">
    <Views>
        <DxSchedulerDayView ShowWorkTimeOnly="true" />
    </Views>
    <PopupSettings>
        <DxSchedulerCompactFormSettings MinHeight="350px" MinWidth="400px" />
    </PopupSettings>
</DxScheduler>
razor
<DxScheduler StartDate="DateTime.Today"
             DataStorage="DataStorage">
    <Views>
        <DxSchedulerDayView ShowWorkTimeOnly="true" />
    </Views>
    <PopupSettings>
        <DxSchedulerTooltipSettings MinHeight="150px" MinWidth="270px" />
    </PopupSettings>
</DxScheduler>

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

See Also

SchedulerPopupSettingsBase Class

SchedulerPopupSettingsBase Members

DevExpress.Blazor Namespace