Dimensions in ASP.NET Core Scheduler

Scheduler dimensions refer to both the height and width of the entire layout, and they accept three types of values:

  • auto
  • pixel
  • percentage

Auto Height and Width

When the height and width of the Scheduler are set to auto, the component tries to match the size of its parent container. In other words, the parent container that holds the Scheduler sizes itself based on its children. By default, the Scheduler is assigned auto values for both height and width.

Height and Width in pixel

The Scheduler height and width are rendered exactly as specified by the pixel values. It accepts both string and number values.

Height and Width in percentage

When the height and width of the Scheduler are given as percentages, the Scheduler expands to match the parent container.

NOTE

You can refer to our ASP.NET Core Scheduler feature tour page for more details. You can also explore our ASP.NET Core Scheduler example to learn how to present and manipulate data.

See Also