DxSchedulerFormSettings.MinHeight Property
Specifies the minimum height of an extended (pop-up) Scheduler appointment form.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v25.1.dll
NuGet Package: DevExpress.Blazor
Declaration
[DefaultValue("300px")]
[Parameter]
public override string MinHeight { get; set; }
Property Value
Type | Default | Description |
---|---|---|
String | "300px" | The minimum height in CSS units. |
Remarks
Use the following properties to restrict the appointment form size:
Note that when choosing height and width values, an appointment form 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 MinHeight="600px" MinWidth="900px" />
</PopupSettings>
</DxScheduler>
The Height and Width properties allow you to specify the pop-up element size.
See Also