day_column_padding

adds padding to a view column

number day_column_padding;

Example

scheduler.config.day_column_padding = 20;


Default value:

8
Details

Events can extend to the full width of the view columns. The day_column_padding setting limits the maximum width that events can occupy within cells. This ensures that there is always some empty space at the sides of the column, allowing users to create new events by double-clicking on these empty areas.

Disabled padding

scheduler.config.day_column_padding = 0;

Scheduler - no padding in day columns

Enabled padding

scheduler.config.day_column_padding = 8;

Scheduler - padding inside day columns

Change log

added in v7.0

Back to top