Dimensions in JavaScript Scheduler Control

18 Nov 20181 minute to read

The Scheduler dimensions refer to both the height and width of the entire layout. It accepts the following three types of values:

  • auto
  • pixel
  • percentage

Auto Height and Width

When the height and width of the Scheduler are set to auto, it will try as hard as possible to keep an element the same width as its parent container. In other words, the parent container that holds Scheduler the component adjusts its dimensions to fit the parent container. By default, the Scheduler is assigned auto values for both the height and width properties.

Height and Width in pixel

The Scheduler height and width are rendered exactly according to the provided pixel values. This property accepts both string and number values.

Height and Width in percentage

When the height and width of the Scheduler are defined as percentages, the component adjusts its size relative to the parent container.

Can refer our JavaScript Scheduler feature tour page for its comprehensive feature representations. You can also explore our JavaScript Scheduler example to learn how to present and manipulate data.

See Also