adds padding to a view column
scheduler.config.day_column_padding = 20;
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;
Enabled padding
scheduler.config.day_column_padding = 8;
added in v7.0
Back to top