DayPilot.Queue.eventBorderRadius

The eventBorderRadius property (number or string) applies the specified border radius to events displayed by the Queue component.

The value should be a string in the CSS format for the border-radius style. If the value is a number (e.g. 10) it will be applied as a pixel value ("10px").

It lets you override the CSS defined in the CSS theme.

You can also set the border radius for individual events using the onBeforeEventRender event handler (args.data.borderRadius).

Available since 2024.3.6180.

Default Value

null

Example

Queue config:

{
  eventBorderRadius: "25px",
  // ...
}