The columnWidthMin property (number) specifies the minimum column width (in pixels) that will be enforced by the JavaScript Calendar component in the responsive column width mode and during drag and drop resizing of calendar columns.
Declaration
DayPilot.Calendar.columnWidthMinDefault Value
10Examples
JavaScript
const calendar = new DayPilot.Calendar("dp", {
columnWidthMin: 80,
// ...
});
calendar.init();Angular
<daypilot-calendar [config]="config"></daypilot-calendar>config: DayPilot.CalendarConfig = {
columnWidthMin: 80,
// ...
};React
<DayPilotCalendar
columnWidthMin={80}
{/* ... */}
/>Vue
<DayPilotCalendar
:columnWidthMin="80"
<!-- ... -->
/>See Also
Responsive Column Width [doc.daypilot.org]
Column Resizing [doc.daypilot.org]
Availability
Availability of this API item in DayPilot editions:
| Product | Lite | Pro |
|---|---|---|
| DayPilot for JavaScript |
DayPilot