Skip to content

yCount

defines the height of the datagrid in rows

let yCount: number
/* the height of the datagrid will be enough to show 20 rows
(the rest of the rows will be hidden and can be scrolled to)
*/webix.grid({
yCount:20
});

Possible values for the property are:

  • the desired number;
  • 0, to disable yCount (calculates the number of the item on the base of the component size).

you can check the full snippet List: Animated Pagination

Articles