blazor-devexpress-dot-blazor-dot-schedulerpopupsettingsbase-8dec281a.md
Specifies the minimum width of the Scheduler pop-up element (compact appointment form or tooltip).
Namespace : DevExpress.Blazor
Assembly : DevExpress.Blazor.v25.2.dll
NuGet Package : DevExpress.Blazor
[DefaultValue(null)]
[Parameter]
public virtual string MinWidth { get; set; }
| Type | Default | Description |
|---|---|---|
| String | null |
The minimum width in CSS units.
|
Use the following properties to restrict the appointment form or tooltip size:
MaxHeightMinHeightMaxWidthMinWidthWhen 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>
<DxSchedulerCompactFormSettings MinHeight="350px" MinWidth="400px" />
</PopupSettings>
</DxScheduler>
<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