blazor-devexpress-dot-blazor-dot-dxschedulerformsettings-a2adfc84.md
Specifies the minimum width of an extended (pop-up) Scheduler appointment form.
Namespace : DevExpress.Blazor
Assembly : DevExpress.Blazor.v25.2.dll
NuGet Package : DevExpress.Blazor
[DefaultValue("440px")]
[Parameter]
public override string MinWidth { get; set; }
| Type | Default | Description |
|---|---|---|
| String | "440px" |
The minimum width in CSS units.
|
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